]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/arm/mach-omap2/board-rx51.c
omap: headers: Move remaining headers from include/mach to include/plat
[mirror_ubuntu-zesty-kernel.git] / arch / arm / mach-omap2 / board-rx51.c
CommitLineData
ffe7f95b
LL
1/*
2 * linux/arch/arm/mach-omap2/board-rx51.c
3 *
4 * Copyright (C) 2007, 2008 Nokia
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/platform_device.h>
14#include <linux/delay.h>
15#include <linux/err.h>
16#include <linux/clk.h>
17#include <linux/io.h>
ffe7f95b
LL
18#include <linux/gpio.h>
19
20#include <mach/hardware.h>
21#include <asm/mach-types.h>
22#include <asm/mach/arch.h>
23#include <asm/mach/map.h>
24
ce491cf8
TL
25#include <plat/mcspi.h>
26#include <plat/mux.h>
27#include <plat/board.h>
28#include <plat/common.h>
29#include <plat/keypad.h>
30#include <plat/dma.h>
31#include <plat/gpmc.h>
32#include <plat/usb.h>
ffe7f95b 33
ffe7f95b
LL
34static struct omap_lcd_config rx51_lcd_config = {
35 .ctrl_name = "internal",
36};
37
38static struct omap_fbmem_config rx51_fbmem0_config = {
39 .size = 752 * 1024,
40};
41
42static struct omap_fbmem_config rx51_fbmem1_config = {
43 .size = 752 * 1024,
44};
45
46static struct omap_fbmem_config rx51_fbmem2_config = {
47 .size = 752 * 1024,
48};
49
50static struct omap_board_config_kernel rx51_config[] = {
ffe7f95b
LL
51 { OMAP_TAG_FBMEM, &rx51_fbmem0_config },
52 { OMAP_TAG_FBMEM, &rx51_fbmem1_config },
53 { OMAP_TAG_FBMEM, &rx51_fbmem2_config },
54 { OMAP_TAG_LCD, &rx51_lcd_config },
55};
56
57static void __init rx51_init_irq(void)
58{
b3c6df3a
PW
59 omap_board_config = rx51_config;
60 omap_board_config_size = ARRAY_SIZE(rx51_config);
58cda884 61 omap2_init_common_hw(NULL, NULL);
ffe7f95b
LL
62 omap_init_irq();
63 omap_gpio_init();
64}
65
66extern void __init rx51_peripherals_init(void);
67
68static void __init rx51_init(void)
69{
ffe7f95b
LL
70 omap_serial_init();
71 usb_musb_init();
72 rx51_peripherals_init();
9fb97412
JP
73
74 /* Ensure SDRC pins are mux'd for self-refresh */
75 omap_cfg_reg(H16_34XX_SDRC_CKE0);
76 omap_cfg_reg(H17_34XX_SDRC_CKE1);
ffe7f95b
LL
77}
78
79static void __init rx51_map_io(void)
80{
81 omap2_set_globals_343x();
82 omap2_map_common_io();
83}
84
85MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")
86 /* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */
87 .phys_io = 0x48000000,
b4224b23 88 .io_pg_offst = ((0xfa000000) >> 18) & 0xfffc,
ffe7f95b
LL
89 .boot_params = 0x80000100,
90 .map_io = rx51_map_io,
91 .init_irq = rx51_init_irq,
92 .init_machine = rx51_init,
93 .timer = &omap_timer,
94MACHINE_END