Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 1 | /* |
Hemant Pedanekar | a890b67 | 2011-12-13 10:48:55 -0800 | [diff] [blame] | 2 | * Code for TI8168/TI8148 EVM. |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2010 Texas Instruments, Inc. - http://www.ti.com/ |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation version 2. |
| 9 | * |
| 10 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 11 | * kind, whether express or implied; without even the implied warranty |
| 12 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/init.h> |
Felipe Balbi | e8c4a7a | 2012-10-24 14:26:19 -0700 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/usb/musb.h> |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 19 | |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 20 | #include <asm/mach-types.h> |
| 21 | #include <asm/mach/arch.h> |
| 22 | #include <asm/mach/map.h> |
| 23 | |
Tony Lindgren | 4e65331 | 2011-11-10 22:45:17 +0100 | [diff] [blame] | 24 | #include "common.h" |
Ravi Babu | f36217f | 2011-12-13 10:50:59 -0800 | [diff] [blame] | 25 | |
| 26 | static struct omap_musb_board_data musb_board_data = { |
| 27 | .set_phy_power = ti81xx_musb_phy_power, |
| 28 | .interface_type = MUSB_INTERFACE_ULPI, |
| 29 | .mode = MUSB_OTG, |
| 30 | .power = 500, |
| 31 | }; |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 32 | |
Hemant Pedanekar | a890b67 | 2011-12-13 10:48:55 -0800 | [diff] [blame] | 33 | static void __init ti81xx_evm_init(void) |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 34 | { |
| 35 | omap_serial_init(); |
Tony Lindgren | a4ca9db | 2011-08-22 23:57:23 -0700 | [diff] [blame] | 36 | omap_sdrc_init(NULL, NULL); |
Ravi Babu | f36217f | 2011-12-13 10:50:59 -0800 | [diff] [blame] | 37 | usb_musb_init(&musb_board_data); |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 38 | } |
| 39 | |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 40 | MACHINE_START(TI8168EVM, "ti8168evm") |
| 41 | /* Maintainer: Texas Instruments */ |
Nicolas Pitre | 5e52b43 | 2011-07-05 22:38:15 -0400 | [diff] [blame] | 42 | .atag_offset = 0x100, |
Hemant Pedanekar | a920360 | 2011-12-13 10:46:44 -0800 | [diff] [blame] | 43 | .map_io = ti81xx_map_io, |
| 44 | .init_early = ti81xx_init_early, |
| 45 | .init_irq = ti81xx_init_irq, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 46 | .init_time = omap3_sync32k_timer_init, |
Hemant Pedanekar | a890b67 | 2011-12-13 10:48:55 -0800 | [diff] [blame] | 47 | .init_machine = ti81xx_evm_init, |
Shawn Guo | bbd707a | 2012-04-26 16:06:50 +0800 | [diff] [blame] | 48 | .init_late = ti81xx_init_late, |
Paul Walmsley | 187e3e0 | 2012-10-29 20:56:12 -0600 | [diff] [blame] | 49 | .restart = omap44xx_restart, |
Hemant Pedanekar | a890b67 | 2011-12-13 10:48:55 -0800 | [diff] [blame] | 50 | MACHINE_END |
| 51 | |
| 52 | MACHINE_START(TI8148EVM, "ti8148evm") |
| 53 | /* Maintainer: Texas Instruments */ |
| 54 | .atag_offset = 0x100, |
| 55 | .map_io = ti81xx_map_io, |
| 56 | .init_early = ti81xx_init_early, |
| 57 | .init_irq = ti81xx_init_irq, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 58 | .init_time = omap3_sync32k_timer_init, |
Hemant Pedanekar | a890b67 | 2011-12-13 10:48:55 -0800 | [diff] [blame] | 59 | .init_machine = ti81xx_evm_init, |
Shawn Guo | bbd707a | 2012-04-26 16:06:50 +0800 | [diff] [blame] | 60 | .init_late = ti81xx_init_late, |
Paul Walmsley | 187e3e0 | 2012-10-29 20:56:12 -0600 | [diff] [blame] | 61 | .restart = omap44xx_restart, |
Hemant Pedanekar | 2c87fb2 | 2011-02-15 23:06:08 +0530 | [diff] [blame] | 62 | MACHINE_END |