diff options
author | Katsunaga Kinoshita <katsu@katsu-ubuntu.(none)> | 2012-05-31 17:51:00 +0900 |
---|---|---|
committer | Justin Waters <justin.waters@timesys.com> | 2012-07-03 17:01:11 -0400 |
commit | f553c19ab631bbefcd2f67cb0847a9cde8c351dd (patch) | |
tree | 7893c07a40b03009dfe2ece944dbf5b7bd2db7eb /arch/arm/mach-mvf/mx6_fec.c | |
parent | 162596a9af091775b330563f3f4aedd738c2b4f9 (diff) |
chane_20120531
Diffstat (limited to 'arch/arm/mach-mvf/mx6_fec.c')
-rw-r--r-- | arch/arm/mach-mvf/mx6_fec.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/arch/arm/mach-mvf/mx6_fec.c b/arch/arm/mach-mvf/mx6_fec.c new file mode 100644 index 000000000000..b2aa45b3c510 --- /dev/null +++ b/arch/arm/mach-mvf/mx6_fec.c @@ -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) (0x00000620 + (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 __init 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); +} |