Merge branch 'reiserfs/kill-bkl' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / arch / arm / mach-bcmring / arch.c
CommitLineData
4663712c
LC
1/*****************************************************************************
2* Copyright 2003 - 2008 Broadcom Corporation. All rights reserved.
3*
4* Unless you and Broadcom execute a separate written software license
5* agreement governing use of this software, this software is licensed to you
6* under the terms of the GNU General Public License version 2, available at
7* http://www.broadcom.com/licenses/GPLv2.php (the "GPL").
8*
9* Notwithstanding the above, under no circumstances may you combine this
10* software in any way with any other Broadcom software provided under a
11* license other than the GPL, without Broadcom's express prior written
12* consent.
13*****************************************************************************/
14
15#include <linux/kernel.h>
16#include <linux/platform_device.h>
17#include <linux/types.h>
18#include <linux/sched.h>
19#include <linux/interrupt.h>
20#include <linux/init.h>
21#include <linux/errno.h>
22#include <linux/spinlock.h>
23#include <linux/module.h>
24
25#include <linux/proc_fs.h>
26#include <linux/sysctl.h>
27
28#include <asm/irq.h>
29#include <asm/setup.h>
30#include <asm/mach-types.h>
31#include <asm/mach/time.h>
32
33#include <asm/mach/arch.h>
34#include <mach/dma.h>
35#include <mach/hardware.h>
36#include <mach/csp/mm_io.h>
37#include <mach/csp/chipcHw_def.h>
38#include <mach/csp/chipcHw_inline.h>
39
40#include <cfg_global.h>
41
42#include "core.h"
43
44HW_DECLARE_SPINLOCK(arch)
45HW_DECLARE_SPINLOCK(gpio)
46#if defined(CONFIG_DEBUG_SPINLOCK)
47 EXPORT_SYMBOL(bcmring_gpio_reg_lock);
48#endif
49
4663712c
LC
50/* sysctl */
51int bcmring_arch_warm_reboot; /* do a warm reboot on hard reset */
52
53static struct ctl_table_header *bcmring_sysctl_header;
54
55static struct ctl_table bcmring_sysctl_warm_reboot[] = {
56 {
4663712c
LC
57 .procname = "warm",
58 .data = &bcmring_arch_warm_reboot,
59 .maxlen = sizeof(int),
60 .mode = 0644,
6d456111 61 .proc_handler = proc_dointvec},
4663712c
LC
62 {}
63};
64
65static struct ctl_table bcmring_sysctl_reboot[] = {
66 {
4663712c
LC
67 .procname = "reboot",
68 .mode = 0555,
69 .child = bcmring_sysctl_warm_reboot},
70 {}
71};
72
73static struct platform_device nand_device = {
74 .name = "bcm-nand",
75 .id = -1,
76};
77
78static struct platform_device *devices[] __initdata = {
79 &nand_device,
80};
81
82/****************************************************************************
83*
84* Called from the customize_machine function in arch/arm/kernel/setup.c
85*
86* The customize_machine function is tagged as an arch_initcall
87* (see include/linux/init.h for the order that the various init sections
88* are called in.
89*
90*****************************************************************************/
91static void __init bcmring_init_machine(void)
92{
93
94 bcmring_sysctl_header = register_sysctl_table(bcmring_sysctl_reboot);
95
96 /* Enable spread spectrum */
97 chipcHw_enableSpreadSpectrum();
98
99 platform_add_devices(devices, ARRAY_SIZE(devices));
100
101 bcmring_amba_init();
102
103 dma_init();
104}
105
106/****************************************************************************
107*
108* Called from setup_arch (in arch/arm/kernel/setup.c) to fixup any tags
109* passed in by the boot loader.
110*
111*****************************************************************************/
112
113static void __init bcmring_fixup(struct machine_desc *desc,
114 struct tag *t, char **cmdline, struct meminfo *mi) {
115#ifdef CONFIG_BLK_DEV_INITRD
116 printk(KERN_NOTICE "bcmring_fixup\n");
117 t->hdr.tag = ATAG_CORE;
118 t->hdr.size = tag_size(tag_core);
119 t->u.core.flags = 0;
120 t->u.core.pagesize = PAGE_SIZE;
121 t->u.core.rootdev = 31 << 8 | 0;
122 t = tag_next(t);
123
124 t->hdr.tag = ATAG_MEM;
125 t->hdr.size = tag_size(tag_mem32);
126 t->u.mem.start = CFG_GLOBAL_RAM_BASE;
127 t->u.mem.size = CFG_GLOBAL_RAM_SIZE;
128
129 t = tag_next(t);
130
131 t->hdr.tag = ATAG_NONE;
132 t->hdr.size = 0;
133#endif
134}
135
136/****************************************************************************
137*
138* Machine Description
139*
140*****************************************************************************/
141
142MACHINE_START(BCMRING, "BCMRING")
143 /* Maintainer: Broadcom Corporation */
144 .phys_io = MM_IO_START,
145 .io_pg_offst = (MM_IO_BASE >> 18) & 0xfffc,
146 .fixup = bcmring_fixup,
147 .map_io = bcmring_map_io,
148 .init_irq = bcmring_init_irq,
149 .timer = &bcmring_timer,
150 .init_machine = bcmring_init_machine
151MACHINE_END