]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ENGR00161617 - [MX6] : FEC get MAC address from OCOTP.
authorFugang Duan <B38611@freescale.com>
Tue, 8 Nov 2011 07:54:47 +0000 (15:54 +0800)
committerOliver Wendt <ow@karo-electronics.de>
Mon, 30 Sep 2013 12:09:59 +0000 (14:09 +0200)
- FEC get the default MAC address from OCOTP.
- If the MAC address is all zero, get the random address.
- But, if add para "fec_mac=xx:xx:xx:xx:xx:xx" in uboot,
  FEC will get the last MAC address from uboot para.

Signed-off-by: Fugang Duan <B38611@freescale.com>
arch/arm/mach-mx6/Makefile
arch/arm/mach-mx6/board-mx6q_arm2.c
arch/arm/mach-mx6/board-mx6q_sabrelite.c
arch/arm/mach-mx6/mx6_fec.c [new file with mode: 0644]
arch/arm/plat-mxc/include/mach/common.h

index 7b3231f8864732a7ae40a62529495e72162ad2c5..d0fe1f4e341063176a691dfde72c54948fc2277d 100644 (file)
@@ -3,7 +3,7 @@
 #
 
 # Object file lists.
-obj-y   := cpu.o mm.o system.o devices.o dummy_gpio.o irq.o bus_freq.o usb_dr.o usb_h1.o usb_h2.o usb_h3.o pm.o cpu_op-mx6.o mx6_wfi.o mx6_anatop_regulator.o
+obj-y   := cpu.o mm.o system.o devices.o dummy_gpio.o irq.o bus_freq.o usb_dr.o usb_h1.o usb_h2.o usb_h3.o pm.o cpu_op-mx6.o mx6_wfi.o mx6_fec.o mx6_anatop_regulator.o
 
 obj-$(CONFIG_ARCH_MX6) += clock.o mx6q_suspend.o
 obj-$(CONFIG_MACH_MX6Q_ARM2) += board-mx6q_arm2.o
index 553e55e1a9fade2c19f3f04a583cc41de2ae0db5..665d91b2c5d709ed2e41674d8287c0d30bbceb41 100644 (file)
@@ -519,12 +519,6 @@ static struct fec_platform_data fec_data __initdata = {
        .phy = PHY_INTERFACE_MODE_RGMII,
 };
 
-static inline void imx6q_init_fec(void)
-{
-       random_ether_addr(fec_data.mac);
-       imx6q_add_fec(&fec_data);
-}
-
 static int mx6q_arm2_spi_cs[] = {
        MX6Q_ARM2_ECSPI1_CS0,
        MX6Q_ARM2_ECSPI1_CS1,
@@ -1451,7 +1445,7 @@ static void __init mx6_board_init(void)
        imx6q_add_anatop_thermal_imx(1, &mx6q_arm2_anatop_thermal_data);
 
        if (!esai_record)
-               imx6q_init_fec();
+               imx6_init_fec(fec_data);
 
        imx6q_add_pm_imx(0, &mx6q_arm2_pm_data);
        imx6q_add_sdhci_usdhc_imx(3, &mx6q_arm2_sd4_data);
index 6e0a9fae14ea26c9f8a4bccfb99b46bf72607a93..50c9e9c5231cc74a453b669f8e4a70c42b20ce8e 100644 (file)
@@ -421,12 +421,6 @@ static struct fec_platform_data fec_data __initdata = {
        .phy = PHY_INTERFACE_MODE_RGMII,
 };
 
-static inline void imx6q_init_fec(void)
-{
-       random_ether_addr(fec_data.mac);
-       imx6q_add_fec(&fec_data);
-}
-
 static int mx6q_sabrelite_spi_cs[] = {
        MX6Q_SABRELITE_ECSPI1_CS1,
 };
@@ -875,7 +869,7 @@ static void __init mx6_sabrelite_board_init(void)
        imx6q_add_mxc_hdmi(&hdmi_data);
 
        imx6q_add_anatop_thermal_imx(1, &mx6q_sabrelite_anatop_thermal_data);
-       imx6q_init_fec();
+       imx6_init_fec(fec_data);
        imx6q_add_pm_imx(0, &mx6q_sabrelite_pm_data);
        imx6q_add_sdhci_usdhc_imx(3, &mx6q_sabrelite_sd4_data);
        imx6q_add_sdhci_usdhc_imx(2, &mx6q_sabrelite_sd3_data);
diff --git a/arch/arm/mach-mx6/mx6_fec.c b/arch/arm/mach-mx6/mx6_fec.c
new file mode 100644 (file)
index 0000000..9d3c824
--- /dev/null
@@ -0,0 +1,53 @@
+/*
+ * Copyright (C) 2011 Freescale Semiconductor, Inc. All Rights Reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+#include <linux/fec.h>
+#include <linux/etherdevice.h>
+
+#include <mach/common.h>
+#include <mach/hardware.h>
+
+#include <asm/mach-types.h>
+#include <asm/mach/arch.h>
+#include "devices-imx6q.h"
+
+#define HW_OCOTP_MACn(n)        (0x00000250 + (n) * 0x10)
+
+static int fec_get_mac_addr(unsigned char *mac)
+{
+       unsigned int value;
+
+       value = readl(MX6_IO_ADDRESS(OCOTP_BASE_ADDR) + HW_OCOTP_MACn(0));
+       mac[5] = value & 0xff;
+       mac[4] = (value >> 8) & 0xff;
+       mac[3] = (value >> 16) & 0xff;
+       mac[2] = (value >> 24) & 0xff;
+       value = readl(MX6_IO_ADDRESS(OCOTP_BASE_ADDR) + HW_OCOTP_MACn(1));
+       mac[1] = value & 0xff;
+       mac[0] = (value >> 8) & 0xff;
+
+       return 0;
+}
+
+void imx6_init_fec(struct fec_platform_data fec_data)
+{
+       fec_get_mac_addr(fec_data.mac);
+       if (!is_valid_ether_addr(fec_data.mac))
+               random_ether_addr(fec_data.mac);
+
+       imx6q_add_fec(&fec_data);
+}
index bc147ae545461fe2b710a842e7fa98b6985f49f3..1359c44cc6acf2b33b3e975695f545ae9c1f448f 100755 (executable)
@@ -72,6 +72,7 @@ extern int mx50_clocks_init(unsigned long ckil, unsigned long osc,
                        unsigned long ckih1);
 extern int mx6_clocks_init(unsigned long ckil, unsigned long osc,
                        unsigned long ckih1, unsigned long ckih2);
+extern void imx6_init_fec(struct fec_platform_data fec_data);
 extern int mxc91231_clocks_init(unsigned long fref);
 extern int mxc_register_gpios(void);
 extern int mxc_register_device(struct platform_device *pdev, void *data);