sh4: mmio based CF support on r2d board (Takashi YOSHII).
[qemu] / hw / r2d.c
1 /*
2  * Renesas SH7751R R2D-PLUS emulation
3  *
4  * Copyright (c) 2007 Magnus Damm
5  * Copyright (c) 2008 Paul Mundt
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a copy
8  * of this software and associated documentation files (the "Software"), to deal
9  * in the Software without restriction, including without limitation the rights
10  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11  * copies of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23  * THE SOFTWARE.
24  */
25
26 #include "hw.h"
27 #include "sh.h"
28 #include "devices.h"
29 #include "sysemu.h"
30 #include "boards.h"
31
32 #define SDRAM_BASE 0x0c000000 /* Physical location of SDRAM: Area 3 */
33 #define SDRAM_SIZE 0x04000000
34
35 #define SM501_VRAM_SIZE 0x800000
36
37 #define PA_POWOFF       0x30
38 #define PA_VERREG       0x32
39 #define PA_OUTPORT      0x36
40
41 typedef struct {
42     uint16_t bcr;
43     uint16_t irlmon;
44     uint16_t cfctl;
45     uint16_t cfpow;
46     uint16_t dispctl;
47     uint16_t sdmpow;
48     uint16_t rtcce;
49     uint16_t pcicd;
50     uint16_t voyagerrts;
51     uint16_t cfrst;
52     uint16_t admrts;
53     uint16_t extrst;
54     uint16_t cfcdintclr;
55     uint16_t keyctlclr;
56     uint16_t pad0;
57     uint16_t pad1;
58     uint16_t powoff;
59     uint16_t verreg;
60     uint16_t inport;
61     uint16_t outport;
62     uint16_t bverreg;
63 } r2d_fpga_t;
64
65 static uint32_t r2d_fpga_read(void *opaque, target_phys_addr_t addr)
66 {
67     r2d_fpga_t *s = opaque;
68
69     switch (addr) {
70     case PA_OUTPORT:
71         return s->outport;
72     case PA_POWOFF:
73         return s->powoff;
74     case PA_VERREG:
75         return 0x10;
76     }
77
78     return 0;
79 }
80
81 static void
82 r2d_fpga_write(void *opaque, target_phys_addr_t addr, uint32_t value)
83 {
84     r2d_fpga_t *s = opaque;
85
86     switch (addr) {
87     case PA_OUTPORT:
88         s->outport = value;
89         break;
90     case PA_POWOFF:
91         s->powoff = value;
92         break;
93     case PA_VERREG:
94         /* Discard writes */
95         break;
96     }
97 }
98
99 static CPUReadMemoryFunc *r2d_fpga_readfn[] = {
100     r2d_fpga_read,
101     r2d_fpga_read,
102     NULL,
103 };
104
105 static CPUWriteMemoryFunc *r2d_fpga_writefn[] = {
106     r2d_fpga_write,
107     r2d_fpga_write,
108     NULL,
109 };
110
111 static void r2d_fpga_init(target_phys_addr_t base)
112 {
113     int iomemtype;
114     r2d_fpga_t *s;
115
116     s = qemu_mallocz(sizeof(r2d_fpga_t));
117     if (!s)
118         return;
119
120     iomemtype = cpu_register_io_memory(0, r2d_fpga_readfn,
121                                        r2d_fpga_writefn, s);
122     cpu_register_physical_memory(base, 0x40, iomemtype);
123 }
124
125 static void r2d_init(ram_addr_t ram_size, int vga_ram_size,
126               const char *boot_device, DisplayState * ds,
127               const char *kernel_filename, const char *kernel_cmdline,
128               const char *initrd_filename, const char *cpu_model)
129 {
130     CPUState *env;
131     struct SH7750State *s;
132     ram_addr_t sdram_addr, sm501_vga_ram_addr;
133
134     if (!cpu_model)
135         cpu_model = "SH7751R";
136
137     env = cpu_init(cpu_model);
138     if (!env) {
139         fprintf(stderr, "Unable to find CPU definition\n");
140         exit(1);
141     }
142
143     /* Allocate memory space */
144     sdram_addr = qemu_ram_alloc(SDRAM_SIZE);
145     cpu_register_physical_memory(SDRAM_BASE, SDRAM_SIZE, sdram_addr);
146     /* Register peripherals */
147     r2d_fpga_init(0x04000000);
148     s = sh7750_init(env);
149     sm501_vga_ram_addr = qemu_ram_alloc(SM501_VRAM_SIZE);
150     sm501_init(ds, 0x10000000, sm501_vga_ram_addr, SM501_VRAM_SIZE,
151                serial_hds[2]);
152
153     /* onboard CF (True IDE mode, Master only). */
154     mmio_ide_init(0x14001000, 0x1400080c, NULL, 1,
155                   drives_table[drive_get_index(IF_IDE, 0, 0)].bdrv, NULL);
156
157     /* Todo: register on board registers */
158     {
159       int kernel_size;
160
161       kernel_size = load_image(kernel_filename, phys_ram_base);
162
163       if (kernel_size < 0) {
164         fprintf(stderr, "qemu: could not load kernel '%s'\n", kernel_filename);
165         exit(1);
166       }
167
168       env->pc = SDRAM_BASE | 0xa0000000; /* Start from P2 area */
169     }
170 }
171
172 QEMUMachine r2d_machine = {
173     .name = "r2d",
174     .desc = "r2d-plus board",
175     .init = r2d_init,
176     .ram_require = (SDRAM_SIZE + SM501_VRAM_SIZE) | RAMSIZE_FIXED,
177 };