cgroup: superblock can't be released with active dentries
[firefly-linux-kernel-4.4.55.git] / arch / arm / mach-msm / board-msm7x30.c
1 /* Copyright (c) 2009-2010, Code Aurora Forum. All rights reserved.
2  *
3  * This program is free software; you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License version 2 and
5  * only version 2 as published by the Free Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 #include <linux/gpio.h>
18 #include <linux/kernel.h>
19 #include <linux/irq.h>
20 #include <linux/platform_device.h>
21 #include <linux/delay.h>
22 #include <linux/io.h>
23 #include <linux/smsc911x.h>
24 #include <linux/usb/msm_hsusb.h>
25 #include <linux/clkdev.h>
26 #include <linux/memblock.h>
27
28 #include <asm/mach-types.h>
29 #include <asm/mach/arch.h>
30 #include <asm/memory.h>
31 #include <asm/setup.h>
32
33 #include <mach/board.h>
34 #include <mach/msm_iomap.h>
35 #include <mach/dma.h>
36
37 #include <mach/vreg.h>
38 #include "devices.h"
39 #include "gpiomux.h"
40 #include "proc_comm.h"
41
42 extern struct sys_timer msm_timer;
43
44 static void __init msm7x30_fixup(struct tag *tag, char **cmdline,
45                 struct meminfo *mi)
46 {
47         for (; tag->hdr.size; tag = tag_next(tag))
48                 if (tag->hdr.tag == ATAG_MEM && tag->u.mem.start == 0x200000) {
49                         tag->u.mem.start = 0;
50                         tag->u.mem.size += SZ_2M;
51                 }
52 }
53
54 static void __init msm7x30_reserve(void)
55 {
56         memblock_remove(0x0, SZ_2M);
57 }
58
59 static int hsusb_phy_init_seq[] = {
60         0x30, 0x32,     /* Enable and set Pre-Emphasis Depth to 20% */
61         0x02, 0x36,     /* Disable CDR Auto Reset feature */
62         -1
63 };
64
65 static struct msm_otg_platform_data msm_otg_pdata = {
66         .phy_init_seq           = hsusb_phy_init_seq,
67         .mode                   = USB_PERIPHERAL,
68         .otg_control            = OTG_PHY_CONTROL,
69 };
70
71 struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = {
72 #ifdef CONFIG_SERIAL_MSM_CONSOLE
73         [49] = { /* UART2 RFR */
74                 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
75                              GPIOMUX_FUNC_2 | GPIOMUX_VALID,
76         },
77         [50] = { /* UART2 CTS */
78                 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
79                              GPIOMUX_FUNC_2 | GPIOMUX_VALID,
80         },
81         [51] = { /* UART2 RX */
82                 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
83                              GPIOMUX_FUNC_2 | GPIOMUX_VALID,
84         },
85         [52] = { /* UART2 TX */
86                 .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN |
87                              GPIOMUX_FUNC_2 | GPIOMUX_VALID,
88         },
89 #endif
90 };
91
92 static struct platform_device *devices[] __initdata = {
93 #if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER)
94         &msm_device_uart2,
95 #endif
96         &msm_device_smd,
97         &msm_device_otg,
98         &msm_device_hsusb,
99         &msm_device_hsusb_host,
100 };
101
102 static void __init msm7x30_init_irq(void)
103 {
104         msm_init_irq();
105 }
106
107 static void __init msm7x30_init(void)
108 {
109         msm_device_otg.dev.platform_data = &msm_otg_pdata;
110         msm_device_hsusb.dev.parent = &msm_device_otg.dev;
111         msm_device_hsusb_host.dev.parent = &msm_device_otg.dev;
112
113         platform_add_devices(devices, ARRAY_SIZE(devices));
114 }
115
116 static void __init msm7x30_map_io(void)
117 {
118         msm_map_msm7x30_io();
119         msm_clock_init(msm_clocks_7x30, msm_num_clocks_7x30);
120 }
121
122 MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF")
123         .atag_offset = 0x100,
124         .fixup = msm7x30_fixup,
125         .reserve = msm7x30_reserve,
126         .map_io = msm7x30_map_io,
127         .init_irq = msm7x30_init_irq,
128         .init_machine = msm7x30_init,
129         .timer = &msm_timer,
130 MACHINE_END
131
132 MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA")
133         .atag_offset = 0x100,
134         .fixup = msm7x30_fixup,
135         .reserve = msm7x30_reserve,
136         .map_io = msm7x30_map_io,
137         .init_irq = msm7x30_init_irq,
138         .init_machine = msm7x30_init,
139         .timer = &msm_timer,
140 MACHINE_END
141
142 MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID")
143         .atag_offset = 0x100,
144         .fixup = msm7x30_fixup,
145         .reserve = msm7x30_reserve,
146         .map_io = msm7x30_map_io,
147         .init_irq = msm7x30_init_irq,
148         .init_machine = msm7x30_init,
149         .timer = &msm_timer,
150 MACHINE_END