]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/powerpc/wii/platform_wii.c
MFV r248217:
[FreeBSD/FreeBSD.git] / sys / powerpc / wii / platform_wii.c
1 /*-
2  * Copyright (C) 2012 Margarida Gouveia
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer,
10  *    without modification, immediately at the beginning of the file.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 #include <sys/cdefs.h>
27 __FBSDID("$FreeBSD$");
28
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/kernel.h>
32 #include <sys/bus.h>
33 #include <sys/pcpu.h>
34 #include <sys/proc.h>
35 #include <sys/reboot.h>
36 #include <sys/smp.h>
37 #include <sys/fbio.h>
38
39 #include <vm/vm.h>
40 #include <vm/pmap.h>
41
42 #include <machine/bus.h>
43 #include <machine/cpu.h>
44 #include <machine/hid.h>
45 #include <machine/platform.h>
46 #include <machine/platformvar.h>
47 #include <machine/pmap.h>
48 #include <machine/smp.h>
49 #include <machine/spr.h>
50 #include <machine/vmparam.h>
51
52 #include <powerpc/wii/wii_fbreg.h>
53 #include <powerpc/wii/wii_ipcreg.h>
54
55 #include "platform_if.h"
56
57 static int              wii_probe(platform_t);
58 static int              wii_attach(platform_t);
59 static void             wii_mem_regions(platform_t, struct mem_region **,
60                             int *, struct mem_region **, int *);
61 static unsigned long    wii_timebase_freq(platform_t, struct cpuref *cpuref);
62 static void             wii_reset(platform_t);
63 static void             wii_cpu_idle(sbintime_t sbt);
64
65 static platform_method_t wii_methods[] = {
66         PLATFORMMETHOD(platform_probe,          wii_probe),
67         PLATFORMMETHOD(platform_attach,         wii_attach),
68         PLATFORMMETHOD(platform_mem_regions,    wii_mem_regions),
69         PLATFORMMETHOD(platform_timebase_freq,  wii_timebase_freq),
70         PLATFORMMETHOD(platform_reset,          wii_reset),
71  
72         PLATFORMMETHOD_END
73 };
74
75 static platform_def_t wii_platform = {
76         "wii",
77         wii_methods,
78         0
79 };
80
81 PLATFORM_DEF(wii_platform);
82
83 static int
84 wii_probe(platform_t plat)
85 {
86         register_t vers = mfpvr();
87
88         /*
89          * The Wii includes a PowerPC 750CL with custom modifications
90          * ("Broadway").
91          * For now, we just assume that if we are running on a
92          * PowerPC 750CL, then this platform is a Nintendo Wii.
93          */
94         if ((vers & 0xfffff0e0) == (MPC750 << 16 | MPC750CL))
95                 return (BUS_PROBE_SPECIFIC);
96
97         return (ENXIO);
98 }
99
100 static int
101 wii_attach(platform_t plat)
102 {
103         cpu_idle_hook = wii_cpu_idle;
104
105         return (0);
106 }
107
108 #define MEM_REGIONS     2
109 static struct mem_region avail_regions[MEM_REGIONS];
110
111 static void
112 wii_mem_regions(platform_t plat, struct mem_region **phys, int *physsz,
113     struct mem_region **avail, int *availsz)
114 {
115         /* 24MB 1T-SRAM */
116         avail_regions[0].mr_start = 0x00000000;
117         avail_regions[0].mr_size  = 0x01800000;
118
119         /*
120          * Reserve space for the framebuffer which is located
121          * at the end of this 24MB memory region. See wii_fbreg.h.
122          */
123         avail_regions[0].mr_size -= WIIFB_FB_LEN;
124
125         /* 64MB GDDR3 SDRAM */
126         avail_regions[1].mr_start = 0x10000000;
127         avail_regions[1].mr_size  = 0x04000000;
128
129         /*
130          * Reserve space for the DSP.
131          */
132         avail_regions[1].mr_start += 0x4000;
133         avail_regions[1].mr_size -= 0x4000;
134
135         /*
136          * Reserve space for the IOS I/O memory.
137          */
138         avail_regions[1].mr_size -= WIIIPC_IOH_LEN + 1;
139
140         *phys = *avail = avail_regions;
141         *physsz = *availsz = MEM_REGIONS;
142 }
143
144 static u_long
145 wii_timebase_freq(platform_t plat, struct cpuref *cpuref)
146 {
147         
148         /* Bus Frequency (243MHz) / 4 */
149         return (60750000);
150 }
151
152 static void
153 wii_reset(platform_t plat)
154 {
155 }
156
157 static void
158 wii_cpu_idle(sbintime_t sbt)
159 {
160 }