diff options
| author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-09-13 00:36:28 -0300 | 
|---|---|---|
| committer | Stefano Babic <sbabic@denx.de> | 2013-09-20 17:55:37 +0200 | 
| commit | 31f07964c896e19b501e9a4a59a8df85515cd0b9 (patch) | |
| tree | 2a0422e6df2908dbc65cfbe5fb11e92644252f15 /arch/arm/include/asm/arch-mx6/iomux.h | |
| parent | 7df51fd8be413a6b831f0fa7b83cad76b5c4e951 (diff) | |
| download | olio-uboot-2014.01-31f07964c896e19b501e9a4a59a8df85515cd0b9.tar.xz olio-uboot-2014.01-31f07964c896e19b501e9a4a59a8df85515cd0b9.zip | |
mx6slevk: Add Ethernet support
mx6slevk has a SMSC8720 connected in RMII mode.
Add support for it.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'arch/arm/include/asm/arch-mx6/iomux.h')
| -rw-r--r-- | arch/arm/include/asm/arch-mx6/iomux.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/arch/arm/include/asm/arch-mx6/iomux.h b/arch/arm/include/asm/arch-mx6/iomux.h index f4cfd4f92..ff13a1ea9 100644 --- a/arch/arm/include/asm/arch-mx6/iomux.h +++ b/arch/arm/include/asm/arch-mx6/iomux.h @@ -27,6 +27,11 @@  #define IOMUXC_GPR13_SATA_PHY_2_MASK	(0x1f<<2)  #define IOMUXC_GPR13_SATA_PHY_1_MASK	(3<<0) +#define IOMUX_GPR1_FEC_CLOCK_MUX1_SEL_MASK (0x3 << 17) +#define IOMUX_GPR1_FEC_CLOCK_MUX2_SEL_MASK (0x1 << 14) +#define IOMUX_GPR1_FEC_MASK    (IOMUX_GPR1_FEC_CLOCK_MUX1_SEL_MASK \ +				| IOMUX_GPR1_FEC_CLOCK_MUX2_SEL_MASK) +  #define IOMUXC_GPR13_SATA_PHY_8_RXEQ_0P5DB	(0<<24)  #define IOMUXC_GPR13_SATA_PHY_8_RXEQ_1P0DB	(1<<24)  #define IOMUXC_GPR13_SATA_PHY_8_RXEQ_1P5DB	(2<<24) |