Lines Matching refs:macb_config
3514 const struct macb_config *dt_conf) in macb_configure_caps()
4319 static const struct macb_config fu540_c000_config = {
4328 static const struct macb_config at91sam9260_config = {
4334 static const struct macb_config sama5d3macb_config = {
4341 static const struct macb_config pc302gem_config = {
4348 static const struct macb_config sama5d2_config = {
4355 static const struct macb_config sama5d3_config = {
4364 static const struct macb_config sama5d4_config = {
4371 static const struct macb_config emac_config = {
4377 static const struct macb_config np4_config = {
4383 static const struct macb_config zynqmp_config = {
4393 static const struct macb_config zynq_config = {
4423 static const struct macb_config default_gem_config = {
4435 const struct macb_config *macb_config = &default_gem_config; in macb_probe() local
4438 struct clk **) = macb_config->clk_init; in macb_probe()
4439 int (*init)(struct platform_device *) = macb_config->init; in macb_probe()
4463 macb_config = match->data; in macb_probe()
4464 clk_init = macb_config->clk_init; in macb_probe()
4465 init = macb_config->init; in macb_probe()
4505 if (macb_config) in macb_probe()
4506 bp->dma_burst_length = macb_config->dma_burst_length; in macb_probe()
4512 if (macb_config) in macb_probe()
4513 bp->jumbo_max_len = macb_config->jumbo_max_len; in macb_probe()
4523 macb_configure_caps(bp, macb_config); in macb_probe()