Lines Matching refs:macb_config

3862 				const struct macb_config *dt_conf)  in macb_configure_caps()
4733 static const struct macb_config fu540_c000_config = {
4743 static const struct macb_config at91sam9260_config = {
4750 static const struct macb_config sama5d3macb_config = {
4758 static const struct macb_config pc302gem_config = {
4766 static const struct macb_config sama5d2_config = {
4774 static const struct macb_config sama5d29_config = {
4782 static const struct macb_config sama5d3_config = {
4792 static const struct macb_config sama5d4_config = {
4800 static const struct macb_config emac_config = {
4807 static const struct macb_config np4_config = {
4814 static const struct macb_config zynqmp_config = {
4825 static const struct macb_config zynq_config = {
4834 static const struct macb_config mpfs_config = {
4845 static const struct macb_config sama7g5_gem_config = {
4854 static const struct macb_config sama7g5_emac_config = {
4863 static const struct macb_config versal_config = {
4901 static const struct macb_config default_gem_config = {
4914 const struct macb_config *macb_config = &default_gem_config; in macb_probe() local
4917 struct clk **) = macb_config->clk_init; in macb_probe()
4918 int (*init)(struct platform_device *) = macb_config->init; in macb_probe()
4940 macb_config = match->data; in macb_probe()
4941 clk_init = macb_config->clk_init; in macb_probe()
4942 init = macb_config->init; in macb_probe()
4982 if (macb_config) in macb_probe()
4983 bp->dma_burst_length = macb_config->dma_burst_length; in macb_probe()
4989 if (macb_config) in macb_probe()
4990 bp->jumbo_max_len = macb_config->jumbo_max_len; in macb_probe()
4997 bp->usrio = macb_config->usrio; in macb_probe()
5002 macb_configure_caps(bp, macb_config); in macb_probe()