/* * Copyright (C) 2010 Juergen Beisert, Pengutronix * Copyright (C) 2011 Marc Kleine-Budde, Pengutronix * Copyright (C) 2011 Wolfram Sang, Pengutronix * * 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. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static void duckbill_get_ethaddr(void) { u8 mac_ocotp[3], mac[6]; int ret; ret = mxs_ocotp_read(mac_ocotp, 3, 0); if (ret != 3) { pr_err("Reading MAC from OCOTP failed!\n"); return; } mac[0] = 0x00; mac[1] = 0x04; mac[2] = 0x9f; mac[3] = mac_ocotp[2]; mac[4] = mac_ocotp[1]; mac[5] = mac_ocotp[0]; eth_register_ethaddr(0, mac); } static struct fsl_usb2_platform_data usb_pdata = { .operating_mode = FSL_USB2_DR_DEVICE, .phy_mode = FSL_USB2_PHY_UTMI, }; static int duckbill_devices_init(void) { duckbill_get_ethaddr(); /* must be after registering ocotp */ imx28_usb_phy0_enable(); add_generic_device("fsl-udc", DEVICE_ID_DYNAMIC, NULL, IMX_USB0_BASE, 0x200, IORESOURCE_MEM, &usb_pdata); return 0; } fs_initcall(duckbill_devices_init); static int duckbill_console_init(void) { barebox_set_model("I2SE Duckbill"); barebox_set_hostname("duckbill"); return 0; } console_initcall(duckbill_console_init);