Lines Matching refs:macb_config
3893 const struct macb_config *dt_conf) in macb_configure_caps()
4762 static const struct macb_config fu540_c000_config = {
4772 static const struct macb_config at91sam9260_config = {
4779 static const struct macb_config sama5d3macb_config = {
4787 static const struct macb_config pc302gem_config = {
4795 static const struct macb_config sama5d2_config = {
4803 static const struct macb_config sama5d29_config = {
4811 static const struct macb_config sama5d3_config = {
4821 static const struct macb_config sama5d4_config = {
4829 static const struct macb_config emac_config = {
4836 static const struct macb_config np4_config = {
4843 static const struct macb_config zynqmp_config = {
4854 static const struct macb_config zynq_config = {
4863 static const struct macb_config mpfs_config = {
4875 static const struct macb_config sama7g5_gem_config = {
4884 static const struct macb_config sama7g5_emac_config = {
4894 static const struct macb_config versal_config = {
4932 static const struct macb_config default_gem_config = {
4945 const struct macb_config *macb_config = &default_gem_config; in macb_probe() local
4948 struct clk **) = macb_config->clk_init; in macb_probe()
4949 int (*init)(struct platform_device *) = macb_config->init; in macb_probe()
4972 macb_config = match->data; in macb_probe()
4973 clk_init = macb_config->clk_init; in macb_probe()
4974 init = macb_config->init; in macb_probe()
5014 if (macb_config) in macb_probe()
5015 bp->dma_burst_length = macb_config->dma_burst_length; in macb_probe()
5021 if (macb_config) in macb_probe()
5022 bp->jumbo_max_len = macb_config->jumbo_max_len; in macb_probe()
5026 else if (macb_config->max_tx_length) in macb_probe()
5027 bp->max_tx_length = macb_config->max_tx_length; in macb_probe()
5036 bp->usrio = macb_config->usrio; in macb_probe()
5060 macb_configure_caps(bp, macb_config); in macb_probe()