Skip to content
Snippets Groups Projects
Commit 8d05f2de authored by Eric Nelson's avatar Eric Nelson Committed by Troy Kisky
Browse files

i.MX6: Allow imx_get_mac_from_fuse with CONFIG_FEC_MAC_FUSE


The use of the i.MX6 fuses is useful even on designs without
the FEC ethernet controller. Allow boards to request the
routine through CONFIG_FEC_MAC_FUSE.

Signed-off-by: default avatarEric Nelson <eric.nelson@boundarydevices.com>
parent 69ba8803
No related branches found
No related tags found
No related merge requests found
config FEC_MAC_FUSE
bool "FEC mac fuse reading"
depends on MX5 || MX6 || MX7 || MX8M
default y if FEC_MXC
config HAS_CAAM
bool
......
......@@ -12,7 +12,7 @@ endif
ifeq ($(SOC),$(filter $(SOC),mx8m))
obj-$(CONFIG_IMX_BOOTAUX) += imx_bootaux.o
obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
obj-$(CONFIG_FEC_MXC) += mac.o
obj-$(CONFIG_FEC_MAC_FUSE) += mac.o
obj-$(CONFIG_SYS_I2C_MXC) += i2c-mxv7.o
obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
obj-y += cpu.o
......@@ -34,7 +34,7 @@ obj-$(CONFIG_ENV_IS_IN_MMC) += mmc_env.o
endif
ifeq ($(SOC),$(filter $(SOC),mx6 mx7))
obj-y += cache.o init.o
obj-$(CONFIG_FEC_MXC) += mac.o
obj-$(CONFIG_FEC_MAC_FUSE) += mac.o
obj-$(CONFIG_IMX_VIDEO_SKIP) += video.o
obj-$(CONFIG_IMX_RDC) += rdc-sema.o
ifneq ($(CONFIG_SPL_BUILD),y)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment