Lines Matching refs:macb_config

3937 				const struct macb_config *dt_conf)  in macb_configure_caps()
4810 static const struct macb_config fu540_c000_config = {
4820 static const struct macb_config at91sam9260_config = {
4827 static const struct macb_config sama5d3macb_config = {
4835 static const struct macb_config pc302gem_config = {
4843 static const struct macb_config sama5d2_config = {
4851 static const struct macb_config sama5d29_config = {
4859 static const struct macb_config sama5d3_config = {
4869 static const struct macb_config sama5d4_config = {
4877 static const struct macb_config emac_config = {
4884 static const struct macb_config np4_config = {
4891 static const struct macb_config zynqmp_config = {
4902 static const struct macb_config zynq_config = {
4911 static const struct macb_config mpfs_config = {
4923 static const struct macb_config sama7g5_gem_config = {
4932 static const struct macb_config sama7g5_emac_config = {
4942 static const struct macb_config versal_config = {
4981 static const struct macb_config default_gem_config = {
4994 const struct macb_config *macb_config = &default_gem_config; in macb_probe() local
4997 struct clk **) = macb_config->clk_init; in macb_probe()
4998 int (*init)(struct platform_device *) = macb_config->init; in macb_probe()
5021 macb_config = match->data; in macb_probe()
5022 clk_init = macb_config->clk_init; in macb_probe()
5023 init = macb_config->init; in macb_probe()
5063 if (macb_config) in macb_probe()
5064 bp->dma_burst_length = macb_config->dma_burst_length; in macb_probe()
5070 if (macb_config) in macb_probe()
5071 bp->jumbo_max_len = macb_config->jumbo_max_len; in macb_probe()
5075 else if (macb_config->max_tx_length) in macb_probe()
5076 bp->max_tx_length = macb_config->max_tx_length; in macb_probe()
5083 bp->usrio = macb_config->usrio; in macb_probe()
5107 macb_configure_caps(bp, macb_config); in macb_probe()