Lines Matching refs:macb_config
3314 const struct macb_config *dt_conf) in macb_configure_caps()
4058 static const struct macb_config fu540_c000_config = {
4067 static const struct macb_config at91sam9260_config = {
4073 static const struct macb_config sama5d3macb_config = {
4080 static const struct macb_config pc302gem_config = {
4087 static const struct macb_config sama5d2_config = {
4094 static const struct macb_config sama5d3_config = {
4103 static const struct macb_config sama5d4_config = {
4110 static const struct macb_config emac_config = {
4116 static const struct macb_config np4_config = {
4122 static const struct macb_config zynqmp_config = {
4132 static const struct macb_config zynq_config = {
4162 static const struct macb_config default_gem_config = {
4174 const struct macb_config *macb_config = &default_gem_config; in macb_probe() local
4177 struct clk **) = macb_config->clk_init; in macb_probe()
4178 int (*init)(struct platform_device *) = macb_config->init; in macb_probe()
4202 macb_config = match->data; in macb_probe()
4203 clk_init = macb_config->clk_init; in macb_probe()
4204 init = macb_config->init; in macb_probe()
4244 if (macb_config) in macb_probe()
4245 bp->dma_burst_length = macb_config->dma_burst_length; in macb_probe()
4251 if (macb_config) in macb_probe()
4252 bp->jumbo_max_len = macb_config->jumbo_max_len; in macb_probe()
4262 macb_configure_caps(bp, macb_config); in macb_probe()