2 * arch/powerpc/platforms/embedded6xx/wii.c
4 * Nintendo Wii board-specific support
5 * Copyright (C) 2008-2009 The GameCube Linux Team
6 * Copyright (C) 2008,2009 Albert Herranz
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
14 #define DRV_MODULE_NAME "wii"
15 #define pr_fmt(fmt) DRV_MODULE_NAME ": " fmt
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/irq.h>
20 #include <linux/seq_file.h>
21 #include <linux/of_platform.h>
22 #include <linux/memblock.h>
23 #include <mm/mmu_decl.h>
26 #include <asm/machdep.h>
31 #include "flipper-pic.h"
33 #include "usbgecko_udbg.h"
36 #define HW_CTRL_COMPATIBLE "nintendo,hollywood-control"
38 #define HW_CTRL_RESETS 0x94
39 #define HW_CTRL_RESETS_SYS (1<<0)
42 #define HW_GPIO_COMPATIBLE "nintendo,hollywood-gpio"
44 #define HW_GPIO_BASE(idx) (idx * 0x20)
45 #define HW_GPIO_OUT(idx) (HW_GPIO_BASE(idx) + 0)
46 #define HW_GPIO_DIR(idx) (HW_GPIO_BASE(idx) + 4)
48 #define HW_GPIO_SHUTDOWN (1<<1)
49 #define HW_GPIO_SLOT_LED (1<<5)
50 #define HW_GPIO_SENSOR_BAR (1<<8)
53 static void __iomem
*hw_ctrl
;
54 static void __iomem
*hw_gpio
;
56 unsigned long wii_hole_start
;
57 unsigned long wii_hole_size
;
60 static int __init
page_aligned(unsigned long x
)
62 return !(x
& (PAGE_SIZE
-1));
65 void __init
wii_memory_fixups(void)
67 struct memblock_region
*p
= memblock
.memory
.regions
;
70 * This is part of a workaround to allow the use of two
71 * discontinuous RAM ranges on the Wii, even if this is
72 * currently unsupported on 32-bit PowerPC Linux.
74 * We coalesce the two memory ranges of the Wii into a
75 * single range, then create a reservation for the "hole"
76 * between both ranges.
79 BUG_ON(memblock
.memory
.cnt
!= 2);
80 BUG_ON(!page_aligned(p
[0].base
) || !page_aligned(p
[1].base
));
82 /* trim unaligned tail */
83 memblock_remove(ALIGN(p
[1].base
+ p
[1].size
, PAGE_SIZE
),
84 (phys_addr_t
)ULLONG_MAX
);
86 /* determine hole, add & reserve them */
87 wii_hole_start
= ALIGN(p
[0].base
+ p
[0].size
, PAGE_SIZE
);
88 wii_hole_size
= p
[1].base
- wii_hole_start
;
89 memblock_add(wii_hole_start
, wii_hole_size
);
90 memblock_reserve(wii_hole_start
, wii_hole_size
);
92 BUG_ON(memblock
.memory
.cnt
!= 1);
93 __memblock_dump_all();
95 /* allow ioremapping the address space in the hole */
96 __allow_ioremap_reserved
= 1;
99 unsigned long __init
wii_mmu_mapin_mem2(unsigned long top
)
101 unsigned long delta
, size
, bl
;
102 unsigned long max_size
= (256<<20);
104 /* MEM2 64MB@0x10000000 */
105 delta
= wii_hole_start
+ wii_hole_size
;
107 for (bl
= 128<<10; bl
< max_size
; bl
<<= 1) {
111 setbat(4, PAGE_OFFSET
+delta
, delta
, bl
, PAGE_KERNEL_X
);
115 static void wii_spin(void)
122 static void __iomem
*wii_ioremap_hw_regs(char *name
, char *compatible
)
124 void __iomem
*hw_regs
= NULL
;
125 struct device_node
*np
;
129 np
= of_find_compatible_node(NULL
, NULL
, compatible
);
131 pr_err("no compatible node found for %s\n", compatible
);
134 error
= of_address_to_resource(np
, 0, &res
);
136 pr_err("no valid reg found for %s\n", np
->name
);
140 hw_regs
= ioremap(res
.start
, resource_size(&res
));
142 pr_info("%s at 0x%08x mapped to 0x%p\n", name
,
152 static void __init
wii_setup_arch(void)
154 hw_ctrl
= wii_ioremap_hw_regs("hw_ctrl", HW_CTRL_COMPATIBLE
);
155 hw_gpio
= wii_ioremap_hw_regs("hw_gpio", HW_GPIO_COMPATIBLE
);
157 /* turn off the front blue led and IR light */
158 clrbits32(hw_gpio
+ HW_GPIO_OUT(0),
159 HW_GPIO_SLOT_LED
| HW_GPIO_SENSOR_BAR
);
163 static void wii_restart(char *cmd
)
168 /* clear the system reset pin to cause a reset */
169 clrbits32(hw_ctrl
+ HW_CTRL_RESETS
, HW_CTRL_RESETS_SYS
);
174 static void wii_power_off(void)
179 /* make sure that the poweroff GPIO is configured as output */
180 setbits32(hw_gpio
+ HW_GPIO_DIR(1), HW_GPIO_SHUTDOWN
);
182 /* drive the poweroff GPIO high */
183 setbits32(hw_gpio
+ HW_GPIO_OUT(1), HW_GPIO_SHUTDOWN
);
188 static void wii_halt(void)
191 ppc_md
.restart(NULL
);
195 static void __init
wii_init_early(void)
200 static void __init
wii_pic_probe(void)
206 static int __init
wii_probe(void)
208 unsigned long dt_root
;
210 dt_root
= of_get_flat_dt_root();
211 if (!of_flat_dt_is_compatible(dt_root
, "nintendo,wii"))
217 static void wii_shutdown(void)
223 define_machine(wii
) {
226 .init_early
= wii_init_early
,
227 .setup_arch
= wii_setup_arch
,
228 .restart
= wii_restart
,
229 .power_off
= wii_power_off
,
231 .init_IRQ
= wii_pic_probe
,
232 .get_irq
= flipper_pic_get_irq
,
233 .calibrate_decr
= generic_calibrate_decr
,
234 .progress
= udbg_progress
,
235 .machine_shutdown
= wii_shutdown
,
238 static struct of_device_id wii_of_bus
[] = {
239 { .compatible
= "nintendo,hollywood", },
243 static int __init
wii_device_probe(void)
245 if (!machine_is(wii
))
248 of_platform_bus_probe(NULL
, wii_of_bus
, NULL
);
251 device_initcall(wii_device_probe
);