Statistics
| Branch: | Revision:

root / hw / ppc405_uc.c @ ee118d95

History | View | Annotate | Download (66.7 kB)

1 8ecc7913 j_mayer
/*
2 8ecc7913 j_mayer
 * QEMU PowerPC 405 embedded processors emulation
3 5fafdf24 ths
 *
4 8ecc7913 j_mayer
 * Copyright (c) 2007 Jocelyn Mayer
5 5fafdf24 ths
 *
6 8ecc7913 j_mayer
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 8ecc7913 j_mayer
 * of this software and associated documentation files (the "Software"), to deal
8 8ecc7913 j_mayer
 * in the Software without restriction, including without limitation the rights
9 8ecc7913 j_mayer
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 8ecc7913 j_mayer
 * copies of the Software, and to permit persons to whom the Software is
11 8ecc7913 j_mayer
 * furnished to do so, subject to the following conditions:
12 8ecc7913 j_mayer
 *
13 8ecc7913 j_mayer
 * The above copyright notice and this permission notice shall be included in
14 8ecc7913 j_mayer
 * all copies or substantial portions of the Software.
15 8ecc7913 j_mayer
 *
16 8ecc7913 j_mayer
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 8ecc7913 j_mayer
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 8ecc7913 j_mayer
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 8ecc7913 j_mayer
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 8ecc7913 j_mayer
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 8ecc7913 j_mayer
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 8ecc7913 j_mayer
 * THE SOFTWARE.
23 8ecc7913 j_mayer
 */
24 87ecb68b pbrook
#include "hw.h"
25 87ecb68b pbrook
#include "ppc.h"
26 04f20795 j_mayer
#include "ppc405.h"
27 87ecb68b pbrook
#include "pc.h"
28 87ecb68b pbrook
#include "qemu-timer.h"
29 87ecb68b pbrook
#include "sysemu.h"
30 3b3fb322 blueswir1
#include "qemu-log.h"
31 8ecc7913 j_mayer
32 8ecc7913 j_mayer
#define DEBUG_OPBA
33 8ecc7913 j_mayer
#define DEBUG_SDRAM
34 8ecc7913 j_mayer
#define DEBUG_GPIO
35 8ecc7913 j_mayer
#define DEBUG_SERIAL
36 8ecc7913 j_mayer
#define DEBUG_OCM
37 9c02f1a2 j_mayer
//#define DEBUG_I2C
38 9c02f1a2 j_mayer
#define DEBUG_GPT
39 9c02f1a2 j_mayer
#define DEBUG_MAL
40 8ecc7913 j_mayer
#define DEBUG_CLOCKS
41 aae9366a j_mayer
//#define DEBUG_CLOCKS_LL
42 8ecc7913 j_mayer
43 b8d3f5d1 j_mayer
ram_addr_t ppc405_set_bootinfo (CPUState *env, ppc4xx_bd_info_t *bd,
44 b8d3f5d1 j_mayer
                                uint32_t flags)
45 04f20795 j_mayer
{
46 04f20795 j_mayer
    ram_addr_t bdloc;
47 04f20795 j_mayer
    int i, n;
48 04f20795 j_mayer
49 04f20795 j_mayer
    /* We put the bd structure at the top of memory */
50 be58fc7c j_mayer
    if (bd->bi_memsize >= 0x01000000UL)
51 be58fc7c j_mayer
        bdloc = 0x01000000UL - sizeof(struct ppc4xx_bd_info_t);
52 be58fc7c j_mayer
    else
53 be58fc7c j_mayer
        bdloc = bd->bi_memsize - sizeof(struct ppc4xx_bd_info_t);
54 5c130f65 pbrook
    stl_phys(bdloc + 0x00, bd->bi_memstart);
55 5c130f65 pbrook
    stl_phys(bdloc + 0x04, bd->bi_memsize);
56 5c130f65 pbrook
    stl_phys(bdloc + 0x08, bd->bi_flashstart);
57 5c130f65 pbrook
    stl_phys(bdloc + 0x0C, bd->bi_flashsize);
58 5c130f65 pbrook
    stl_phys(bdloc + 0x10, bd->bi_flashoffset);
59 5c130f65 pbrook
    stl_phys(bdloc + 0x14, bd->bi_sramstart);
60 5c130f65 pbrook
    stl_phys(bdloc + 0x18, bd->bi_sramsize);
61 5c130f65 pbrook
    stl_phys(bdloc + 0x1C, bd->bi_bootflags);
62 5c130f65 pbrook
    stl_phys(bdloc + 0x20, bd->bi_ipaddr);
63 04f20795 j_mayer
    for (i = 0; i < 6; i++)
64 5c130f65 pbrook
        stb_phys(bdloc + 0x24 + i, bd->bi_enetaddr[i]);
65 5c130f65 pbrook
    stw_phys(bdloc + 0x2A, bd->bi_ethspeed);
66 5c130f65 pbrook
    stl_phys(bdloc + 0x2C, bd->bi_intfreq);
67 5c130f65 pbrook
    stl_phys(bdloc + 0x30, bd->bi_busfreq);
68 5c130f65 pbrook
    stl_phys(bdloc + 0x34, bd->bi_baudrate);
69 04f20795 j_mayer
    for (i = 0; i < 4; i++)
70 5c130f65 pbrook
        stb_phys(bdloc + 0x38 + i, bd->bi_s_version[i]);
71 04f20795 j_mayer
    for (i = 0; i < 32; i++)
72 5c130f65 pbrook
        stb_phys(bdloc + 0x3C + i, bd->bi_s_version[i]);
73 5c130f65 pbrook
    stl_phys(bdloc + 0x5C, bd->bi_plb_busfreq);
74 5c130f65 pbrook
    stl_phys(bdloc + 0x60, bd->bi_pci_busfreq);
75 04f20795 j_mayer
    for (i = 0; i < 6; i++)
76 5c130f65 pbrook
        stb_phys(bdloc + 0x64 + i, bd->bi_pci_enetaddr[i]);
77 04f20795 j_mayer
    n = 0x6A;
78 b8d3f5d1 j_mayer
    if (flags & 0x00000001) {
79 04f20795 j_mayer
        for (i = 0; i < 6; i++)
80 5c130f65 pbrook
            stb_phys(bdloc + n++, bd->bi_pci_enetaddr2[i]);
81 04f20795 j_mayer
    }
82 5c130f65 pbrook
    stl_phys(bdloc + n, bd->bi_opbfreq);
83 04f20795 j_mayer
    n += 4;
84 04f20795 j_mayer
    for (i = 0; i < 2; i++) {
85 5c130f65 pbrook
        stl_phys(bdloc + n, bd->bi_iic_fast[i]);
86 04f20795 j_mayer
        n += 4;
87 04f20795 j_mayer
    }
88 04f20795 j_mayer
89 04f20795 j_mayer
    return bdloc;
90 04f20795 j_mayer
}
91 04f20795 j_mayer
92 8ecc7913 j_mayer
/*****************************************************************************/
93 8ecc7913 j_mayer
/* Shared peripherals */
94 8ecc7913 j_mayer
95 8ecc7913 j_mayer
/*****************************************************************************/
96 8ecc7913 j_mayer
/* Peripheral local bus arbitrer */
97 8ecc7913 j_mayer
enum {
98 8ecc7913 j_mayer
    PLB0_BESR = 0x084,
99 8ecc7913 j_mayer
    PLB0_BEAR = 0x086,
100 8ecc7913 j_mayer
    PLB0_ACR  = 0x087,
101 8ecc7913 j_mayer
};
102 8ecc7913 j_mayer
103 8ecc7913 j_mayer
typedef struct ppc4xx_plb_t ppc4xx_plb_t;
104 8ecc7913 j_mayer
struct ppc4xx_plb_t {
105 8ecc7913 j_mayer
    uint32_t acr;
106 8ecc7913 j_mayer
    uint32_t bear;
107 8ecc7913 j_mayer
    uint32_t besr;
108 8ecc7913 j_mayer
};
109 8ecc7913 j_mayer
110 8ecc7913 j_mayer
static target_ulong dcr_read_plb (void *opaque, int dcrn)
111 8ecc7913 j_mayer
{
112 8ecc7913 j_mayer
    ppc4xx_plb_t *plb;
113 8ecc7913 j_mayer
    target_ulong ret;
114 8ecc7913 j_mayer
115 8ecc7913 j_mayer
    plb = opaque;
116 8ecc7913 j_mayer
    switch (dcrn) {
117 8ecc7913 j_mayer
    case PLB0_ACR:
118 8ecc7913 j_mayer
        ret = plb->acr;
119 8ecc7913 j_mayer
        break;
120 8ecc7913 j_mayer
    case PLB0_BEAR:
121 8ecc7913 j_mayer
        ret = plb->bear;
122 8ecc7913 j_mayer
        break;
123 8ecc7913 j_mayer
    case PLB0_BESR:
124 8ecc7913 j_mayer
        ret = plb->besr;
125 8ecc7913 j_mayer
        break;
126 8ecc7913 j_mayer
    default:
127 8ecc7913 j_mayer
        /* Avoid gcc warning */
128 8ecc7913 j_mayer
        ret = 0;
129 8ecc7913 j_mayer
        break;
130 8ecc7913 j_mayer
    }
131 8ecc7913 j_mayer
132 8ecc7913 j_mayer
    return ret;
133 8ecc7913 j_mayer
}
134 8ecc7913 j_mayer
135 8ecc7913 j_mayer
static void dcr_write_plb (void *opaque, int dcrn, target_ulong val)
136 8ecc7913 j_mayer
{
137 8ecc7913 j_mayer
    ppc4xx_plb_t *plb;
138 8ecc7913 j_mayer
139 8ecc7913 j_mayer
    plb = opaque;
140 8ecc7913 j_mayer
    switch (dcrn) {
141 8ecc7913 j_mayer
    case PLB0_ACR:
142 9c02f1a2 j_mayer
        /* We don't care about the actual parameters written as
143 9c02f1a2 j_mayer
         * we don't manage any priorities on the bus
144 9c02f1a2 j_mayer
         */
145 9c02f1a2 j_mayer
        plb->acr = val & 0xF8000000;
146 8ecc7913 j_mayer
        break;
147 8ecc7913 j_mayer
    case PLB0_BEAR:
148 8ecc7913 j_mayer
        /* Read only */
149 8ecc7913 j_mayer
        break;
150 8ecc7913 j_mayer
    case PLB0_BESR:
151 8ecc7913 j_mayer
        /* Write-clear */
152 8ecc7913 j_mayer
        plb->besr &= ~val;
153 8ecc7913 j_mayer
        break;
154 8ecc7913 j_mayer
    }
155 8ecc7913 j_mayer
}
156 8ecc7913 j_mayer
157 8ecc7913 j_mayer
static void ppc4xx_plb_reset (void *opaque)
158 8ecc7913 j_mayer
{
159 8ecc7913 j_mayer
    ppc4xx_plb_t *plb;
160 8ecc7913 j_mayer
161 8ecc7913 j_mayer
    plb = opaque;
162 8ecc7913 j_mayer
    plb->acr = 0x00000000;
163 8ecc7913 j_mayer
    plb->bear = 0x00000000;
164 8ecc7913 j_mayer
    plb->besr = 0x00000000;
165 8ecc7913 j_mayer
}
166 8ecc7913 j_mayer
167 8ecc7913 j_mayer
void ppc4xx_plb_init (CPUState *env)
168 8ecc7913 j_mayer
{
169 8ecc7913 j_mayer
    ppc4xx_plb_t *plb;
170 8ecc7913 j_mayer
171 8ecc7913 j_mayer
    plb = qemu_mallocz(sizeof(ppc4xx_plb_t));
172 487414f1 aliguori
    ppc_dcr_register(env, PLB0_ACR, plb, &dcr_read_plb, &dcr_write_plb);
173 487414f1 aliguori
    ppc_dcr_register(env, PLB0_BEAR, plb, &dcr_read_plb, &dcr_write_plb);
174 487414f1 aliguori
    ppc_dcr_register(env, PLB0_BESR, plb, &dcr_read_plb, &dcr_write_plb);
175 487414f1 aliguori
    ppc4xx_plb_reset(plb);
176 8217606e Jan Kiszka
    qemu_register_reset(ppc4xx_plb_reset, 0, plb);
177 8ecc7913 j_mayer
}
178 8ecc7913 j_mayer
179 8ecc7913 j_mayer
/*****************************************************************************/
180 8ecc7913 j_mayer
/* PLB to OPB bridge */
181 8ecc7913 j_mayer
enum {
182 8ecc7913 j_mayer
    POB0_BESR0 = 0x0A0,
183 8ecc7913 j_mayer
    POB0_BESR1 = 0x0A2,
184 8ecc7913 j_mayer
    POB0_BEAR  = 0x0A4,
185 8ecc7913 j_mayer
};
186 8ecc7913 j_mayer
187 8ecc7913 j_mayer
typedef struct ppc4xx_pob_t ppc4xx_pob_t;
188 8ecc7913 j_mayer
struct ppc4xx_pob_t {
189 8ecc7913 j_mayer
    uint32_t bear;
190 8ecc7913 j_mayer
    uint32_t besr[2];
191 8ecc7913 j_mayer
};
192 8ecc7913 j_mayer
193 8ecc7913 j_mayer
static target_ulong dcr_read_pob (void *opaque, int dcrn)
194 8ecc7913 j_mayer
{
195 8ecc7913 j_mayer
    ppc4xx_pob_t *pob;
196 8ecc7913 j_mayer
    target_ulong ret;
197 8ecc7913 j_mayer
198 8ecc7913 j_mayer
    pob = opaque;
199 8ecc7913 j_mayer
    switch (dcrn) {
200 8ecc7913 j_mayer
    case POB0_BEAR:
201 8ecc7913 j_mayer
        ret = pob->bear;
202 8ecc7913 j_mayer
        break;
203 8ecc7913 j_mayer
    case POB0_BESR0:
204 8ecc7913 j_mayer
    case POB0_BESR1:
205 8ecc7913 j_mayer
        ret = pob->besr[dcrn - POB0_BESR0];
206 8ecc7913 j_mayer
        break;
207 8ecc7913 j_mayer
    default:
208 8ecc7913 j_mayer
        /* Avoid gcc warning */
209 8ecc7913 j_mayer
        ret = 0;
210 8ecc7913 j_mayer
        break;
211 8ecc7913 j_mayer
    }
212 8ecc7913 j_mayer
213 8ecc7913 j_mayer
    return ret;
214 8ecc7913 j_mayer
}
215 8ecc7913 j_mayer
216 8ecc7913 j_mayer
static void dcr_write_pob (void *opaque, int dcrn, target_ulong val)
217 8ecc7913 j_mayer
{
218 8ecc7913 j_mayer
    ppc4xx_pob_t *pob;
219 8ecc7913 j_mayer
220 8ecc7913 j_mayer
    pob = opaque;
221 8ecc7913 j_mayer
    switch (dcrn) {
222 8ecc7913 j_mayer
    case POB0_BEAR:
223 8ecc7913 j_mayer
        /* Read only */
224 8ecc7913 j_mayer
        break;
225 8ecc7913 j_mayer
    case POB0_BESR0:
226 8ecc7913 j_mayer
    case POB0_BESR1:
227 8ecc7913 j_mayer
        /* Write-clear */
228 8ecc7913 j_mayer
        pob->besr[dcrn - POB0_BESR0] &= ~val;
229 8ecc7913 j_mayer
        break;
230 8ecc7913 j_mayer
    }
231 8ecc7913 j_mayer
}
232 8ecc7913 j_mayer
233 8ecc7913 j_mayer
static void ppc4xx_pob_reset (void *opaque)
234 8ecc7913 j_mayer
{
235 8ecc7913 j_mayer
    ppc4xx_pob_t *pob;
236 8ecc7913 j_mayer
237 8ecc7913 j_mayer
    pob = opaque;
238 8ecc7913 j_mayer
    /* No error */
239 8ecc7913 j_mayer
    pob->bear = 0x00000000;
240 8ecc7913 j_mayer
    pob->besr[0] = 0x0000000;
241 8ecc7913 j_mayer
    pob->besr[1] = 0x0000000;
242 8ecc7913 j_mayer
}
243 8ecc7913 j_mayer
244 8ecc7913 j_mayer
void ppc4xx_pob_init (CPUState *env)
245 8ecc7913 j_mayer
{
246 8ecc7913 j_mayer
    ppc4xx_pob_t *pob;
247 8ecc7913 j_mayer
248 8ecc7913 j_mayer
    pob = qemu_mallocz(sizeof(ppc4xx_pob_t));
249 487414f1 aliguori
    ppc_dcr_register(env, POB0_BEAR, pob, &dcr_read_pob, &dcr_write_pob);
250 487414f1 aliguori
    ppc_dcr_register(env, POB0_BESR0, pob, &dcr_read_pob, &dcr_write_pob);
251 487414f1 aliguori
    ppc_dcr_register(env, POB0_BESR1, pob, &dcr_read_pob, &dcr_write_pob);
252 8217606e Jan Kiszka
    qemu_register_reset(ppc4xx_pob_reset, 0, pob);
253 487414f1 aliguori
    ppc4xx_pob_reset(env);
254 8ecc7913 j_mayer
}
255 8ecc7913 j_mayer
256 8ecc7913 j_mayer
/*****************************************************************************/
257 8ecc7913 j_mayer
/* OPB arbitrer */
258 8ecc7913 j_mayer
typedef struct ppc4xx_opba_t ppc4xx_opba_t;
259 8ecc7913 j_mayer
struct ppc4xx_opba_t {
260 9c02f1a2 j_mayer
    target_phys_addr_t base;
261 8ecc7913 j_mayer
    uint8_t cr;
262 8ecc7913 j_mayer
    uint8_t pr;
263 8ecc7913 j_mayer
};
264 8ecc7913 j_mayer
265 8ecc7913 j_mayer
static uint32_t opba_readb (void *opaque, target_phys_addr_t addr)
266 8ecc7913 j_mayer
{
267 8ecc7913 j_mayer
    ppc4xx_opba_t *opba;
268 8ecc7913 j_mayer
    uint32_t ret;
269 8ecc7913 j_mayer
270 8ecc7913 j_mayer
#ifdef DEBUG_OPBA
271 8ecc7913 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
272 8ecc7913 j_mayer
#endif
273 8ecc7913 j_mayer
    opba = opaque;
274 8ecc7913 j_mayer
    switch (addr - opba->base) {
275 8ecc7913 j_mayer
    case 0x00:
276 8ecc7913 j_mayer
        ret = opba->cr;
277 8ecc7913 j_mayer
        break;
278 8ecc7913 j_mayer
    case 0x01:
279 8ecc7913 j_mayer
        ret = opba->pr;
280 8ecc7913 j_mayer
        break;
281 8ecc7913 j_mayer
    default:
282 8ecc7913 j_mayer
        ret = 0x00;
283 8ecc7913 j_mayer
        break;
284 8ecc7913 j_mayer
    }
285 8ecc7913 j_mayer
286 8ecc7913 j_mayer
    return ret;
287 8ecc7913 j_mayer
}
288 8ecc7913 j_mayer
289 8ecc7913 j_mayer
static void opba_writeb (void *opaque,
290 8ecc7913 j_mayer
                         target_phys_addr_t addr, uint32_t value)
291 8ecc7913 j_mayer
{
292 8ecc7913 j_mayer
    ppc4xx_opba_t *opba;
293 8ecc7913 j_mayer
294 8ecc7913 j_mayer
#ifdef DEBUG_OPBA
295 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
296 8ecc7913 j_mayer
#endif
297 8ecc7913 j_mayer
    opba = opaque;
298 8ecc7913 j_mayer
    switch (addr - opba->base) {
299 8ecc7913 j_mayer
    case 0x00:
300 8ecc7913 j_mayer
        opba->cr = value & 0xF8;
301 8ecc7913 j_mayer
        break;
302 8ecc7913 j_mayer
    case 0x01:
303 8ecc7913 j_mayer
        opba->pr = value & 0xFF;
304 8ecc7913 j_mayer
        break;
305 8ecc7913 j_mayer
    default:
306 8ecc7913 j_mayer
        break;
307 8ecc7913 j_mayer
    }
308 8ecc7913 j_mayer
}
309 8ecc7913 j_mayer
310 8ecc7913 j_mayer
static uint32_t opba_readw (void *opaque, target_phys_addr_t addr)
311 8ecc7913 j_mayer
{
312 8ecc7913 j_mayer
    uint32_t ret;
313 8ecc7913 j_mayer
314 8ecc7913 j_mayer
#ifdef DEBUG_OPBA
315 8ecc7913 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
316 8ecc7913 j_mayer
#endif
317 8ecc7913 j_mayer
    ret = opba_readb(opaque, addr) << 8;
318 8ecc7913 j_mayer
    ret |= opba_readb(opaque, addr + 1);
319 8ecc7913 j_mayer
320 8ecc7913 j_mayer
    return ret;
321 8ecc7913 j_mayer
}
322 8ecc7913 j_mayer
323 8ecc7913 j_mayer
static void opba_writew (void *opaque,
324 8ecc7913 j_mayer
                         target_phys_addr_t addr, uint32_t value)
325 8ecc7913 j_mayer
{
326 8ecc7913 j_mayer
#ifdef DEBUG_OPBA
327 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
328 8ecc7913 j_mayer
#endif
329 8ecc7913 j_mayer
    opba_writeb(opaque, addr, value >> 8);
330 8ecc7913 j_mayer
    opba_writeb(opaque, addr + 1, value);
331 8ecc7913 j_mayer
}
332 8ecc7913 j_mayer
333 8ecc7913 j_mayer
static uint32_t opba_readl (void *opaque, target_phys_addr_t addr)
334 8ecc7913 j_mayer
{
335 8ecc7913 j_mayer
    uint32_t ret;
336 8ecc7913 j_mayer
337 8ecc7913 j_mayer
#ifdef DEBUG_OPBA
338 8ecc7913 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
339 8ecc7913 j_mayer
#endif
340 8ecc7913 j_mayer
    ret = opba_readb(opaque, addr) << 24;
341 8ecc7913 j_mayer
    ret |= opba_readb(opaque, addr + 1) << 16;
342 8ecc7913 j_mayer
343 8ecc7913 j_mayer
    return ret;
344 8ecc7913 j_mayer
}
345 8ecc7913 j_mayer
346 8ecc7913 j_mayer
static void opba_writel (void *opaque,
347 8ecc7913 j_mayer
                         target_phys_addr_t addr, uint32_t value)
348 8ecc7913 j_mayer
{
349 8ecc7913 j_mayer
#ifdef DEBUG_OPBA
350 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
351 8ecc7913 j_mayer
#endif
352 8ecc7913 j_mayer
    opba_writeb(opaque, addr, value >> 24);
353 8ecc7913 j_mayer
    opba_writeb(opaque, addr + 1, value >> 16);
354 8ecc7913 j_mayer
}
355 8ecc7913 j_mayer
356 8ecc7913 j_mayer
static CPUReadMemoryFunc *opba_read[] = {
357 8ecc7913 j_mayer
    &opba_readb,
358 8ecc7913 j_mayer
    &opba_readw,
359 8ecc7913 j_mayer
    &opba_readl,
360 8ecc7913 j_mayer
};
361 8ecc7913 j_mayer
362 8ecc7913 j_mayer
static CPUWriteMemoryFunc *opba_write[] = {
363 8ecc7913 j_mayer
    &opba_writeb,
364 8ecc7913 j_mayer
    &opba_writew,
365 8ecc7913 j_mayer
    &opba_writel,
366 8ecc7913 j_mayer
};
367 8ecc7913 j_mayer
368 8ecc7913 j_mayer
static void ppc4xx_opba_reset (void *opaque)
369 8ecc7913 j_mayer
{
370 8ecc7913 j_mayer
    ppc4xx_opba_t *opba;
371 8ecc7913 j_mayer
372 8ecc7913 j_mayer
    opba = opaque;
373 8ecc7913 j_mayer
    opba->cr = 0x00; /* No dynamic priorities - park disabled */
374 8ecc7913 j_mayer
    opba->pr = 0x11;
375 8ecc7913 j_mayer
}
376 8ecc7913 j_mayer
377 9c02f1a2 j_mayer
void ppc4xx_opba_init (CPUState *env, ppc4xx_mmio_t *mmio,
378 9c02f1a2 j_mayer
                       target_phys_addr_t offset)
379 8ecc7913 j_mayer
{
380 8ecc7913 j_mayer
    ppc4xx_opba_t *opba;
381 8ecc7913 j_mayer
382 8ecc7913 j_mayer
    opba = qemu_mallocz(sizeof(ppc4xx_opba_t));
383 487414f1 aliguori
    opba->base = offset;
384 8ecc7913 j_mayer
#ifdef DEBUG_OPBA
385 487414f1 aliguori
    printf("%s: offset " PADDRX "\n", __func__, offset);
386 8ecc7913 j_mayer
#endif
387 487414f1 aliguori
    ppc4xx_mmio_register(env, mmio, offset, 0x002,
388 487414f1 aliguori
                         opba_read, opba_write, opba);
389 8217606e Jan Kiszka
    qemu_register_reset(ppc4xx_opba_reset, 0, opba);
390 487414f1 aliguori
    ppc4xx_opba_reset(opba);
391 8ecc7913 j_mayer
}
392 8ecc7913 j_mayer
393 8ecc7913 j_mayer
/*****************************************************************************/
394 8ecc7913 j_mayer
/* Code decompression controller */
395 8ecc7913 j_mayer
/* XXX: TODO */
396 8ecc7913 j_mayer
397 8ecc7913 j_mayer
/*****************************************************************************/
398 8ecc7913 j_mayer
/* Peripheral controller */
399 8ecc7913 j_mayer
typedef struct ppc4xx_ebc_t ppc4xx_ebc_t;
400 8ecc7913 j_mayer
struct ppc4xx_ebc_t {
401 8ecc7913 j_mayer
    uint32_t addr;
402 8ecc7913 j_mayer
    uint32_t bcr[8];
403 8ecc7913 j_mayer
    uint32_t bap[8];
404 8ecc7913 j_mayer
    uint32_t bear;
405 8ecc7913 j_mayer
    uint32_t besr0;
406 8ecc7913 j_mayer
    uint32_t besr1;
407 8ecc7913 j_mayer
    uint32_t cfg;
408 8ecc7913 j_mayer
};
409 8ecc7913 j_mayer
410 8ecc7913 j_mayer
enum {
411 8ecc7913 j_mayer
    EBC0_CFGADDR = 0x012,
412 8ecc7913 j_mayer
    EBC0_CFGDATA = 0x013,
413 8ecc7913 j_mayer
};
414 8ecc7913 j_mayer
415 8ecc7913 j_mayer
static target_ulong dcr_read_ebc (void *opaque, int dcrn)
416 8ecc7913 j_mayer
{
417 8ecc7913 j_mayer
    ppc4xx_ebc_t *ebc;
418 8ecc7913 j_mayer
    target_ulong ret;
419 8ecc7913 j_mayer
420 8ecc7913 j_mayer
    ebc = opaque;
421 8ecc7913 j_mayer
    switch (dcrn) {
422 8ecc7913 j_mayer
    case EBC0_CFGADDR:
423 8ecc7913 j_mayer
        ret = ebc->addr;
424 8ecc7913 j_mayer
        break;
425 8ecc7913 j_mayer
    case EBC0_CFGDATA:
426 8ecc7913 j_mayer
        switch (ebc->addr) {
427 8ecc7913 j_mayer
        case 0x00: /* B0CR */
428 8ecc7913 j_mayer
            ret = ebc->bcr[0];
429 8ecc7913 j_mayer
            break;
430 8ecc7913 j_mayer
        case 0x01: /* B1CR */
431 8ecc7913 j_mayer
            ret = ebc->bcr[1];
432 8ecc7913 j_mayer
            break;
433 8ecc7913 j_mayer
        case 0x02: /* B2CR */
434 8ecc7913 j_mayer
            ret = ebc->bcr[2];
435 8ecc7913 j_mayer
            break;
436 8ecc7913 j_mayer
        case 0x03: /* B3CR */
437 8ecc7913 j_mayer
            ret = ebc->bcr[3];
438 8ecc7913 j_mayer
            break;
439 8ecc7913 j_mayer
        case 0x04: /* B4CR */
440 8ecc7913 j_mayer
            ret = ebc->bcr[4];
441 8ecc7913 j_mayer
            break;
442 8ecc7913 j_mayer
        case 0x05: /* B5CR */
443 8ecc7913 j_mayer
            ret = ebc->bcr[5];
444 8ecc7913 j_mayer
            break;
445 8ecc7913 j_mayer
        case 0x06: /* B6CR */
446 8ecc7913 j_mayer
            ret = ebc->bcr[6];
447 8ecc7913 j_mayer
            break;
448 8ecc7913 j_mayer
        case 0x07: /* B7CR */
449 8ecc7913 j_mayer
            ret = ebc->bcr[7];
450 8ecc7913 j_mayer
            break;
451 8ecc7913 j_mayer
        case 0x10: /* B0AP */
452 8ecc7913 j_mayer
            ret = ebc->bap[0];
453 8ecc7913 j_mayer
            break;
454 8ecc7913 j_mayer
        case 0x11: /* B1AP */
455 8ecc7913 j_mayer
            ret = ebc->bap[1];
456 8ecc7913 j_mayer
            break;
457 8ecc7913 j_mayer
        case 0x12: /* B2AP */
458 8ecc7913 j_mayer
            ret = ebc->bap[2];
459 8ecc7913 j_mayer
            break;
460 8ecc7913 j_mayer
        case 0x13: /* B3AP */
461 8ecc7913 j_mayer
            ret = ebc->bap[3];
462 8ecc7913 j_mayer
            break;
463 8ecc7913 j_mayer
        case 0x14: /* B4AP */
464 8ecc7913 j_mayer
            ret = ebc->bap[4];
465 8ecc7913 j_mayer
            break;
466 8ecc7913 j_mayer
        case 0x15: /* B5AP */
467 8ecc7913 j_mayer
            ret = ebc->bap[5];
468 8ecc7913 j_mayer
            break;
469 8ecc7913 j_mayer
        case 0x16: /* B6AP */
470 8ecc7913 j_mayer
            ret = ebc->bap[6];
471 8ecc7913 j_mayer
            break;
472 8ecc7913 j_mayer
        case 0x17: /* B7AP */
473 8ecc7913 j_mayer
            ret = ebc->bap[7];
474 8ecc7913 j_mayer
            break;
475 8ecc7913 j_mayer
        case 0x20: /* BEAR */
476 8ecc7913 j_mayer
            ret = ebc->bear;
477 8ecc7913 j_mayer
            break;
478 8ecc7913 j_mayer
        case 0x21: /* BESR0 */
479 8ecc7913 j_mayer
            ret = ebc->besr0;
480 8ecc7913 j_mayer
            break;
481 8ecc7913 j_mayer
        case 0x22: /* BESR1 */
482 8ecc7913 j_mayer
            ret = ebc->besr1;
483 8ecc7913 j_mayer
            break;
484 8ecc7913 j_mayer
        case 0x23: /* CFG */
485 8ecc7913 j_mayer
            ret = ebc->cfg;
486 8ecc7913 j_mayer
            break;
487 8ecc7913 j_mayer
        default:
488 8ecc7913 j_mayer
            ret = 0x00000000;
489 8ecc7913 j_mayer
            break;
490 8ecc7913 j_mayer
        }
491 8ecc7913 j_mayer
    default:
492 8ecc7913 j_mayer
        ret = 0x00000000;
493 8ecc7913 j_mayer
        break;
494 8ecc7913 j_mayer
    }
495 8ecc7913 j_mayer
496 8ecc7913 j_mayer
    return ret;
497 8ecc7913 j_mayer
}
498 8ecc7913 j_mayer
499 8ecc7913 j_mayer
static void dcr_write_ebc (void *opaque, int dcrn, target_ulong val)
500 8ecc7913 j_mayer
{
501 8ecc7913 j_mayer
    ppc4xx_ebc_t *ebc;
502 8ecc7913 j_mayer
503 8ecc7913 j_mayer
    ebc = opaque;
504 8ecc7913 j_mayer
    switch (dcrn) {
505 8ecc7913 j_mayer
    case EBC0_CFGADDR:
506 8ecc7913 j_mayer
        ebc->addr = val;
507 8ecc7913 j_mayer
        break;
508 8ecc7913 j_mayer
    case EBC0_CFGDATA:
509 8ecc7913 j_mayer
        switch (ebc->addr) {
510 8ecc7913 j_mayer
        case 0x00: /* B0CR */
511 8ecc7913 j_mayer
            break;
512 8ecc7913 j_mayer
        case 0x01: /* B1CR */
513 8ecc7913 j_mayer
            break;
514 8ecc7913 j_mayer
        case 0x02: /* B2CR */
515 8ecc7913 j_mayer
            break;
516 8ecc7913 j_mayer
        case 0x03: /* B3CR */
517 8ecc7913 j_mayer
            break;
518 8ecc7913 j_mayer
        case 0x04: /* B4CR */
519 8ecc7913 j_mayer
            break;
520 8ecc7913 j_mayer
        case 0x05: /* B5CR */
521 8ecc7913 j_mayer
            break;
522 8ecc7913 j_mayer
        case 0x06: /* B6CR */
523 8ecc7913 j_mayer
            break;
524 8ecc7913 j_mayer
        case 0x07: /* B7CR */
525 8ecc7913 j_mayer
            break;
526 8ecc7913 j_mayer
        case 0x10: /* B0AP */
527 8ecc7913 j_mayer
            break;
528 8ecc7913 j_mayer
        case 0x11: /* B1AP */
529 8ecc7913 j_mayer
            break;
530 8ecc7913 j_mayer
        case 0x12: /* B2AP */
531 8ecc7913 j_mayer
            break;
532 8ecc7913 j_mayer
        case 0x13: /* B3AP */
533 8ecc7913 j_mayer
            break;
534 8ecc7913 j_mayer
        case 0x14: /* B4AP */
535 8ecc7913 j_mayer
            break;
536 8ecc7913 j_mayer
        case 0x15: /* B5AP */
537 8ecc7913 j_mayer
            break;
538 8ecc7913 j_mayer
        case 0x16: /* B6AP */
539 8ecc7913 j_mayer
            break;
540 8ecc7913 j_mayer
        case 0x17: /* B7AP */
541 8ecc7913 j_mayer
            break;
542 8ecc7913 j_mayer
        case 0x20: /* BEAR */
543 8ecc7913 j_mayer
            break;
544 8ecc7913 j_mayer
        case 0x21: /* BESR0 */
545 8ecc7913 j_mayer
            break;
546 8ecc7913 j_mayer
        case 0x22: /* BESR1 */
547 8ecc7913 j_mayer
            break;
548 8ecc7913 j_mayer
        case 0x23: /* CFG */
549 8ecc7913 j_mayer
            break;
550 8ecc7913 j_mayer
        default:
551 8ecc7913 j_mayer
            break;
552 8ecc7913 j_mayer
        }
553 8ecc7913 j_mayer
        break;
554 8ecc7913 j_mayer
    default:
555 8ecc7913 j_mayer
        break;
556 8ecc7913 j_mayer
    }
557 8ecc7913 j_mayer
}
558 8ecc7913 j_mayer
559 8ecc7913 j_mayer
static void ebc_reset (void *opaque)
560 8ecc7913 j_mayer
{
561 8ecc7913 j_mayer
    ppc4xx_ebc_t *ebc;
562 8ecc7913 j_mayer
    int i;
563 8ecc7913 j_mayer
564 8ecc7913 j_mayer
    ebc = opaque;
565 8ecc7913 j_mayer
    ebc->addr = 0x00000000;
566 8ecc7913 j_mayer
    ebc->bap[0] = 0x7F8FFE80;
567 8ecc7913 j_mayer
    ebc->bcr[0] = 0xFFE28000;
568 8ecc7913 j_mayer
    for (i = 0; i < 8; i++) {
569 8ecc7913 j_mayer
        ebc->bap[i] = 0x00000000;
570 8ecc7913 j_mayer
        ebc->bcr[i] = 0x00000000;
571 8ecc7913 j_mayer
    }
572 8ecc7913 j_mayer
    ebc->besr0 = 0x00000000;
573 8ecc7913 j_mayer
    ebc->besr1 = 0x00000000;
574 9c02f1a2 j_mayer
    ebc->cfg = 0x80400000;
575 8ecc7913 j_mayer
}
576 8ecc7913 j_mayer
577 8ecc7913 j_mayer
void ppc405_ebc_init (CPUState *env)
578 8ecc7913 j_mayer
{
579 8ecc7913 j_mayer
    ppc4xx_ebc_t *ebc;
580 8ecc7913 j_mayer
581 8ecc7913 j_mayer
    ebc = qemu_mallocz(sizeof(ppc4xx_ebc_t));
582 487414f1 aliguori
    ebc_reset(ebc);
583 8217606e Jan Kiszka
    qemu_register_reset(&ebc_reset, 0, ebc);
584 487414f1 aliguori
    ppc_dcr_register(env, EBC0_CFGADDR,
585 487414f1 aliguori
                     ebc, &dcr_read_ebc, &dcr_write_ebc);
586 487414f1 aliguori
    ppc_dcr_register(env, EBC0_CFGDATA,
587 487414f1 aliguori
                     ebc, &dcr_read_ebc, &dcr_write_ebc);
588 8ecc7913 j_mayer
}
589 8ecc7913 j_mayer
590 8ecc7913 j_mayer
/*****************************************************************************/
591 8ecc7913 j_mayer
/* DMA controller */
592 8ecc7913 j_mayer
enum {
593 8ecc7913 j_mayer
    DMA0_CR0 = 0x100,
594 8ecc7913 j_mayer
    DMA0_CT0 = 0x101,
595 8ecc7913 j_mayer
    DMA0_DA0 = 0x102,
596 8ecc7913 j_mayer
    DMA0_SA0 = 0x103,
597 8ecc7913 j_mayer
    DMA0_SG0 = 0x104,
598 8ecc7913 j_mayer
    DMA0_CR1 = 0x108,
599 8ecc7913 j_mayer
    DMA0_CT1 = 0x109,
600 8ecc7913 j_mayer
    DMA0_DA1 = 0x10A,
601 8ecc7913 j_mayer
    DMA0_SA1 = 0x10B,
602 8ecc7913 j_mayer
    DMA0_SG1 = 0x10C,
603 8ecc7913 j_mayer
    DMA0_CR2 = 0x110,
604 8ecc7913 j_mayer
    DMA0_CT2 = 0x111,
605 8ecc7913 j_mayer
    DMA0_DA2 = 0x112,
606 8ecc7913 j_mayer
    DMA0_SA2 = 0x113,
607 8ecc7913 j_mayer
    DMA0_SG2 = 0x114,
608 8ecc7913 j_mayer
    DMA0_CR3 = 0x118,
609 8ecc7913 j_mayer
    DMA0_CT3 = 0x119,
610 8ecc7913 j_mayer
    DMA0_DA3 = 0x11A,
611 8ecc7913 j_mayer
    DMA0_SA3 = 0x11B,
612 8ecc7913 j_mayer
    DMA0_SG3 = 0x11C,
613 8ecc7913 j_mayer
    DMA0_SR  = 0x120,
614 8ecc7913 j_mayer
    DMA0_SGC = 0x123,
615 8ecc7913 j_mayer
    DMA0_SLP = 0x125,
616 8ecc7913 j_mayer
    DMA0_POL = 0x126,
617 8ecc7913 j_mayer
};
618 8ecc7913 j_mayer
619 8ecc7913 j_mayer
typedef struct ppc405_dma_t ppc405_dma_t;
620 8ecc7913 j_mayer
struct ppc405_dma_t {
621 8ecc7913 j_mayer
    qemu_irq irqs[4];
622 8ecc7913 j_mayer
    uint32_t cr[4];
623 8ecc7913 j_mayer
    uint32_t ct[4];
624 8ecc7913 j_mayer
    uint32_t da[4];
625 8ecc7913 j_mayer
    uint32_t sa[4];
626 8ecc7913 j_mayer
    uint32_t sg[4];
627 8ecc7913 j_mayer
    uint32_t sr;
628 8ecc7913 j_mayer
    uint32_t sgc;
629 8ecc7913 j_mayer
    uint32_t slp;
630 8ecc7913 j_mayer
    uint32_t pol;
631 8ecc7913 j_mayer
};
632 8ecc7913 j_mayer
633 8ecc7913 j_mayer
static target_ulong dcr_read_dma (void *opaque, int dcrn)
634 8ecc7913 j_mayer
{
635 8ecc7913 j_mayer
    ppc405_dma_t *dma;
636 8ecc7913 j_mayer
637 8ecc7913 j_mayer
    dma = opaque;
638 8ecc7913 j_mayer
639 8ecc7913 j_mayer
    return 0;
640 8ecc7913 j_mayer
}
641 8ecc7913 j_mayer
642 8ecc7913 j_mayer
static void dcr_write_dma (void *opaque, int dcrn, target_ulong val)
643 8ecc7913 j_mayer
{
644 8ecc7913 j_mayer
    ppc405_dma_t *dma;
645 8ecc7913 j_mayer
646 8ecc7913 j_mayer
    dma = opaque;
647 8ecc7913 j_mayer
}
648 8ecc7913 j_mayer
649 8ecc7913 j_mayer
static void ppc405_dma_reset (void *opaque)
650 8ecc7913 j_mayer
{
651 8ecc7913 j_mayer
    ppc405_dma_t *dma;
652 8ecc7913 j_mayer
    int i;
653 8ecc7913 j_mayer
654 8ecc7913 j_mayer
    dma = opaque;
655 8ecc7913 j_mayer
    for (i = 0; i < 4; i++) {
656 8ecc7913 j_mayer
        dma->cr[i] = 0x00000000;
657 8ecc7913 j_mayer
        dma->ct[i] = 0x00000000;
658 8ecc7913 j_mayer
        dma->da[i] = 0x00000000;
659 8ecc7913 j_mayer
        dma->sa[i] = 0x00000000;
660 8ecc7913 j_mayer
        dma->sg[i] = 0x00000000;
661 8ecc7913 j_mayer
    }
662 8ecc7913 j_mayer
    dma->sr = 0x00000000;
663 8ecc7913 j_mayer
    dma->sgc = 0x00000000;
664 8ecc7913 j_mayer
    dma->slp = 0x7C000000;
665 8ecc7913 j_mayer
    dma->pol = 0x00000000;
666 8ecc7913 j_mayer
}
667 8ecc7913 j_mayer
668 8ecc7913 j_mayer
void ppc405_dma_init (CPUState *env, qemu_irq irqs[4])
669 8ecc7913 j_mayer
{
670 8ecc7913 j_mayer
    ppc405_dma_t *dma;
671 8ecc7913 j_mayer
672 8ecc7913 j_mayer
    dma = qemu_mallocz(sizeof(ppc405_dma_t));
673 487414f1 aliguori
    memcpy(dma->irqs, irqs, 4 * sizeof(qemu_irq));
674 487414f1 aliguori
    ppc405_dma_reset(dma);
675 8217606e Jan Kiszka
    qemu_register_reset(&ppc405_dma_reset, 0, dma);
676 487414f1 aliguori
    ppc_dcr_register(env, DMA0_CR0,
677 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
678 487414f1 aliguori
    ppc_dcr_register(env, DMA0_CT0,
679 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
680 487414f1 aliguori
    ppc_dcr_register(env, DMA0_DA0,
681 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
682 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SA0,
683 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
684 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SG0,
685 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
686 487414f1 aliguori
    ppc_dcr_register(env, DMA0_CR1,
687 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
688 487414f1 aliguori
    ppc_dcr_register(env, DMA0_CT1,
689 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
690 487414f1 aliguori
    ppc_dcr_register(env, DMA0_DA1,
691 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
692 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SA1,
693 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
694 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SG1,
695 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
696 487414f1 aliguori
    ppc_dcr_register(env, DMA0_CR2,
697 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
698 487414f1 aliguori
    ppc_dcr_register(env, DMA0_CT2,
699 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
700 487414f1 aliguori
    ppc_dcr_register(env, DMA0_DA2,
701 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
702 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SA2,
703 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
704 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SG2,
705 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
706 487414f1 aliguori
    ppc_dcr_register(env, DMA0_CR3,
707 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
708 487414f1 aliguori
    ppc_dcr_register(env, DMA0_CT3,
709 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
710 487414f1 aliguori
    ppc_dcr_register(env, DMA0_DA3,
711 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
712 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SA3,
713 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
714 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SG3,
715 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
716 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SR,
717 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
718 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SGC,
719 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
720 487414f1 aliguori
    ppc_dcr_register(env, DMA0_SLP,
721 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
722 487414f1 aliguori
    ppc_dcr_register(env, DMA0_POL,
723 487414f1 aliguori
                     dma, &dcr_read_dma, &dcr_write_dma);
724 8ecc7913 j_mayer
}
725 8ecc7913 j_mayer
726 8ecc7913 j_mayer
/*****************************************************************************/
727 8ecc7913 j_mayer
/* GPIO */
728 8ecc7913 j_mayer
typedef struct ppc405_gpio_t ppc405_gpio_t;
729 8ecc7913 j_mayer
struct ppc405_gpio_t {
730 9c02f1a2 j_mayer
    target_phys_addr_t base;
731 8ecc7913 j_mayer
    uint32_t or;
732 8ecc7913 j_mayer
    uint32_t tcr;
733 8ecc7913 j_mayer
    uint32_t osrh;
734 8ecc7913 j_mayer
    uint32_t osrl;
735 8ecc7913 j_mayer
    uint32_t tsrh;
736 8ecc7913 j_mayer
    uint32_t tsrl;
737 8ecc7913 j_mayer
    uint32_t odr;
738 8ecc7913 j_mayer
    uint32_t ir;
739 8ecc7913 j_mayer
    uint32_t rr1;
740 8ecc7913 j_mayer
    uint32_t isr1h;
741 8ecc7913 j_mayer
    uint32_t isr1l;
742 8ecc7913 j_mayer
};
743 8ecc7913 j_mayer
744 8ecc7913 j_mayer
static uint32_t ppc405_gpio_readb (void *opaque, target_phys_addr_t addr)
745 8ecc7913 j_mayer
{
746 8ecc7913 j_mayer
    ppc405_gpio_t *gpio;
747 8ecc7913 j_mayer
748 8ecc7913 j_mayer
    gpio = opaque;
749 8ecc7913 j_mayer
#ifdef DEBUG_GPIO
750 8ecc7913 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
751 8ecc7913 j_mayer
#endif
752 8ecc7913 j_mayer
753 8ecc7913 j_mayer
    return 0;
754 8ecc7913 j_mayer
}
755 8ecc7913 j_mayer
756 8ecc7913 j_mayer
static void ppc405_gpio_writeb (void *opaque,
757 8ecc7913 j_mayer
                                target_phys_addr_t addr, uint32_t value)
758 8ecc7913 j_mayer
{
759 8ecc7913 j_mayer
    ppc405_gpio_t *gpio;
760 8ecc7913 j_mayer
761 8ecc7913 j_mayer
    gpio = opaque;
762 8ecc7913 j_mayer
#ifdef DEBUG_GPIO
763 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
764 8ecc7913 j_mayer
#endif
765 8ecc7913 j_mayer
}
766 8ecc7913 j_mayer
767 8ecc7913 j_mayer
static uint32_t ppc405_gpio_readw (void *opaque, target_phys_addr_t addr)
768 8ecc7913 j_mayer
{
769 8ecc7913 j_mayer
    ppc405_gpio_t *gpio;
770 8ecc7913 j_mayer
771 8ecc7913 j_mayer
    gpio = opaque;
772 8ecc7913 j_mayer
#ifdef DEBUG_GPIO
773 8ecc7913 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
774 8ecc7913 j_mayer
#endif
775 8ecc7913 j_mayer
776 8ecc7913 j_mayer
    return 0;
777 8ecc7913 j_mayer
}
778 8ecc7913 j_mayer
779 8ecc7913 j_mayer
static void ppc405_gpio_writew (void *opaque,
780 8ecc7913 j_mayer
                                target_phys_addr_t addr, uint32_t value)
781 8ecc7913 j_mayer
{
782 8ecc7913 j_mayer
    ppc405_gpio_t *gpio;
783 8ecc7913 j_mayer
784 8ecc7913 j_mayer
    gpio = opaque;
785 8ecc7913 j_mayer
#ifdef DEBUG_GPIO
786 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
787 8ecc7913 j_mayer
#endif
788 8ecc7913 j_mayer
}
789 8ecc7913 j_mayer
790 8ecc7913 j_mayer
static uint32_t ppc405_gpio_readl (void *opaque, target_phys_addr_t addr)
791 8ecc7913 j_mayer
{
792 8ecc7913 j_mayer
    ppc405_gpio_t *gpio;
793 8ecc7913 j_mayer
794 8ecc7913 j_mayer
    gpio = opaque;
795 8ecc7913 j_mayer
#ifdef DEBUG_GPIO
796 8ecc7913 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
797 8ecc7913 j_mayer
#endif
798 8ecc7913 j_mayer
799 8ecc7913 j_mayer
    return 0;
800 8ecc7913 j_mayer
}
801 8ecc7913 j_mayer
802 8ecc7913 j_mayer
static void ppc405_gpio_writel (void *opaque,
803 8ecc7913 j_mayer
                                target_phys_addr_t addr, uint32_t value)
804 8ecc7913 j_mayer
{
805 8ecc7913 j_mayer
    ppc405_gpio_t *gpio;
806 8ecc7913 j_mayer
807 8ecc7913 j_mayer
    gpio = opaque;
808 8ecc7913 j_mayer
#ifdef DEBUG_GPIO
809 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
810 8ecc7913 j_mayer
#endif
811 8ecc7913 j_mayer
}
812 8ecc7913 j_mayer
813 8ecc7913 j_mayer
static CPUReadMemoryFunc *ppc405_gpio_read[] = {
814 8ecc7913 j_mayer
    &ppc405_gpio_readb,
815 8ecc7913 j_mayer
    &ppc405_gpio_readw,
816 8ecc7913 j_mayer
    &ppc405_gpio_readl,
817 8ecc7913 j_mayer
};
818 8ecc7913 j_mayer
819 8ecc7913 j_mayer
static CPUWriteMemoryFunc *ppc405_gpio_write[] = {
820 8ecc7913 j_mayer
    &ppc405_gpio_writeb,
821 8ecc7913 j_mayer
    &ppc405_gpio_writew,
822 8ecc7913 j_mayer
    &ppc405_gpio_writel,
823 8ecc7913 j_mayer
};
824 8ecc7913 j_mayer
825 8ecc7913 j_mayer
static void ppc405_gpio_reset (void *opaque)
826 8ecc7913 j_mayer
{
827 8ecc7913 j_mayer
    ppc405_gpio_t *gpio;
828 8ecc7913 j_mayer
829 8ecc7913 j_mayer
    gpio = opaque;
830 8ecc7913 j_mayer
}
831 8ecc7913 j_mayer
832 9c02f1a2 j_mayer
void ppc405_gpio_init (CPUState *env, ppc4xx_mmio_t *mmio,
833 9c02f1a2 j_mayer
                       target_phys_addr_t offset)
834 8ecc7913 j_mayer
{
835 8ecc7913 j_mayer
    ppc405_gpio_t *gpio;
836 8ecc7913 j_mayer
837 8ecc7913 j_mayer
    gpio = qemu_mallocz(sizeof(ppc405_gpio_t));
838 487414f1 aliguori
    gpio->base = offset;
839 487414f1 aliguori
    ppc405_gpio_reset(gpio);
840 8217606e Jan Kiszka
    qemu_register_reset(&ppc405_gpio_reset, 0, gpio);
841 8ecc7913 j_mayer
#ifdef DEBUG_GPIO
842 487414f1 aliguori
    printf("%s: offset " PADDRX "\n", __func__, offset);
843 8ecc7913 j_mayer
#endif
844 487414f1 aliguori
    ppc4xx_mmio_register(env, mmio, offset, 0x038,
845 487414f1 aliguori
                         ppc405_gpio_read, ppc405_gpio_write, gpio);
846 8ecc7913 j_mayer
}
847 8ecc7913 j_mayer
848 8ecc7913 j_mayer
/*****************************************************************************/
849 8ecc7913 j_mayer
/* Serial ports */
850 8ecc7913 j_mayer
static CPUReadMemoryFunc *serial_mm_read[] = {
851 8ecc7913 j_mayer
    &serial_mm_readb,
852 8ecc7913 j_mayer
    &serial_mm_readw,
853 8ecc7913 j_mayer
    &serial_mm_readl,
854 8ecc7913 j_mayer
};
855 8ecc7913 j_mayer
856 8ecc7913 j_mayer
static CPUWriteMemoryFunc *serial_mm_write[] = {
857 8ecc7913 j_mayer
    &serial_mm_writeb,
858 8ecc7913 j_mayer
    &serial_mm_writew,
859 8ecc7913 j_mayer
    &serial_mm_writel,
860 8ecc7913 j_mayer
};
861 8ecc7913 j_mayer
862 8ecc7913 j_mayer
void ppc405_serial_init (CPUState *env, ppc4xx_mmio_t *mmio,
863 9c02f1a2 j_mayer
                         target_phys_addr_t offset, qemu_irq irq,
864 8ecc7913 j_mayer
                         CharDriverState *chr)
865 8ecc7913 j_mayer
{
866 8ecc7913 j_mayer
    void *serial;
867 8ecc7913 j_mayer
868 8ecc7913 j_mayer
#ifdef DEBUG_SERIAL
869 aae9366a j_mayer
    printf("%s: offset " PADDRX "\n", __func__, offset);
870 8ecc7913 j_mayer
#endif
871 b6cd0ea1 aurel32
    serial = serial_mm_init(offset, 0, irq, 399193, chr, 0);
872 8ecc7913 j_mayer
    ppc4xx_mmio_register(env, mmio, offset, 0x008,
873 8ecc7913 j_mayer
                         serial_mm_read, serial_mm_write, serial);
874 8ecc7913 j_mayer
}
875 8ecc7913 j_mayer
876 8ecc7913 j_mayer
/*****************************************************************************/
877 8ecc7913 j_mayer
/* On Chip Memory */
878 8ecc7913 j_mayer
enum {
879 8ecc7913 j_mayer
    OCM0_ISARC   = 0x018,
880 8ecc7913 j_mayer
    OCM0_ISACNTL = 0x019,
881 8ecc7913 j_mayer
    OCM0_DSARC   = 0x01A,
882 8ecc7913 j_mayer
    OCM0_DSACNTL = 0x01B,
883 8ecc7913 j_mayer
};
884 8ecc7913 j_mayer
885 8ecc7913 j_mayer
typedef struct ppc405_ocm_t ppc405_ocm_t;
886 8ecc7913 j_mayer
struct ppc405_ocm_t {
887 8ecc7913 j_mayer
    target_ulong offset;
888 8ecc7913 j_mayer
    uint32_t isarc;
889 8ecc7913 j_mayer
    uint32_t isacntl;
890 8ecc7913 j_mayer
    uint32_t dsarc;
891 8ecc7913 j_mayer
    uint32_t dsacntl;
892 8ecc7913 j_mayer
};
893 8ecc7913 j_mayer
894 8ecc7913 j_mayer
static void ocm_update_mappings (ppc405_ocm_t *ocm,
895 8ecc7913 j_mayer
                                 uint32_t isarc, uint32_t isacntl,
896 8ecc7913 j_mayer
                                 uint32_t dsarc, uint32_t dsacntl)
897 8ecc7913 j_mayer
{
898 8ecc7913 j_mayer
#ifdef DEBUG_OCM
899 aae9366a j_mayer
    printf("OCM update ISA %08" PRIx32 " %08" PRIx32 " (%08" PRIx32
900 aae9366a j_mayer
           " %08" PRIx32 ") DSA %08" PRIx32 " %08" PRIx32
901 aae9366a j_mayer
           " (%08" PRIx32 " %08" PRIx32 ")\n",
902 8ecc7913 j_mayer
           isarc, isacntl, dsarc, dsacntl,
903 8ecc7913 j_mayer
           ocm->isarc, ocm->isacntl, ocm->dsarc, ocm->dsacntl);
904 8ecc7913 j_mayer
#endif
905 8ecc7913 j_mayer
    if (ocm->isarc != isarc ||
906 8ecc7913 j_mayer
        (ocm->isacntl & 0x80000000) != (isacntl & 0x80000000)) {
907 8ecc7913 j_mayer
        if (ocm->isacntl & 0x80000000) {
908 8ecc7913 j_mayer
            /* Unmap previously assigned memory region */
909 aae9366a j_mayer
            printf("OCM unmap ISA %08" PRIx32 "\n", ocm->isarc);
910 8ecc7913 j_mayer
            cpu_register_physical_memory(ocm->isarc, 0x04000000,
911 8ecc7913 j_mayer
                                         IO_MEM_UNASSIGNED);
912 8ecc7913 j_mayer
        }
913 8ecc7913 j_mayer
        if (isacntl & 0x80000000) {
914 8ecc7913 j_mayer
            /* Map new instruction memory region */
915 8ecc7913 j_mayer
#ifdef DEBUG_OCM
916 aae9366a j_mayer
            printf("OCM map ISA %08" PRIx32 "\n", isarc);
917 8ecc7913 j_mayer
#endif
918 8ecc7913 j_mayer
            cpu_register_physical_memory(isarc, 0x04000000,
919 8ecc7913 j_mayer
                                         ocm->offset | IO_MEM_RAM);
920 8ecc7913 j_mayer
        }
921 8ecc7913 j_mayer
    }
922 8ecc7913 j_mayer
    if (ocm->dsarc != dsarc ||
923 8ecc7913 j_mayer
        (ocm->dsacntl & 0x80000000) != (dsacntl & 0x80000000)) {
924 8ecc7913 j_mayer
        if (ocm->dsacntl & 0x80000000) {
925 8ecc7913 j_mayer
            /* Beware not to unmap the region we just mapped */
926 8ecc7913 j_mayer
            if (!(isacntl & 0x80000000) || ocm->dsarc != isarc) {
927 8ecc7913 j_mayer
                /* Unmap previously assigned memory region */
928 8ecc7913 j_mayer
#ifdef DEBUG_OCM
929 aae9366a j_mayer
                printf("OCM unmap DSA %08" PRIx32 "\n", ocm->dsarc);
930 8ecc7913 j_mayer
#endif
931 8ecc7913 j_mayer
                cpu_register_physical_memory(ocm->dsarc, 0x04000000,
932 8ecc7913 j_mayer
                                             IO_MEM_UNASSIGNED);
933 8ecc7913 j_mayer
            }
934 8ecc7913 j_mayer
        }
935 8ecc7913 j_mayer
        if (dsacntl & 0x80000000) {
936 8ecc7913 j_mayer
            /* Beware not to remap the region we just mapped */
937 8ecc7913 j_mayer
            if (!(isacntl & 0x80000000) || dsarc != isarc) {
938 8ecc7913 j_mayer
                /* Map new data memory region */
939 8ecc7913 j_mayer
#ifdef DEBUG_OCM
940 aae9366a j_mayer
                printf("OCM map DSA %08" PRIx32 "\n", dsarc);
941 8ecc7913 j_mayer
#endif
942 8ecc7913 j_mayer
                cpu_register_physical_memory(dsarc, 0x04000000,
943 8ecc7913 j_mayer
                                             ocm->offset | IO_MEM_RAM);
944 8ecc7913 j_mayer
            }
945 8ecc7913 j_mayer
        }
946 8ecc7913 j_mayer
    }
947 8ecc7913 j_mayer
}
948 8ecc7913 j_mayer
949 8ecc7913 j_mayer
static target_ulong dcr_read_ocm (void *opaque, int dcrn)
950 8ecc7913 j_mayer
{
951 8ecc7913 j_mayer
    ppc405_ocm_t *ocm;
952 8ecc7913 j_mayer
    target_ulong ret;
953 8ecc7913 j_mayer
954 8ecc7913 j_mayer
    ocm = opaque;
955 8ecc7913 j_mayer
    switch (dcrn) {
956 8ecc7913 j_mayer
    case OCM0_ISARC:
957 8ecc7913 j_mayer
        ret = ocm->isarc;
958 8ecc7913 j_mayer
        break;
959 8ecc7913 j_mayer
    case OCM0_ISACNTL:
960 8ecc7913 j_mayer
        ret = ocm->isacntl;
961 8ecc7913 j_mayer
        break;
962 8ecc7913 j_mayer
    case OCM0_DSARC:
963 8ecc7913 j_mayer
        ret = ocm->dsarc;
964 8ecc7913 j_mayer
        break;
965 8ecc7913 j_mayer
    case OCM0_DSACNTL:
966 8ecc7913 j_mayer
        ret = ocm->dsacntl;
967 8ecc7913 j_mayer
        break;
968 8ecc7913 j_mayer
    default:
969 8ecc7913 j_mayer
        ret = 0;
970 8ecc7913 j_mayer
        break;
971 8ecc7913 j_mayer
    }
972 8ecc7913 j_mayer
973 8ecc7913 j_mayer
    return ret;
974 8ecc7913 j_mayer
}
975 8ecc7913 j_mayer
976 8ecc7913 j_mayer
static void dcr_write_ocm (void *opaque, int dcrn, target_ulong val)
977 8ecc7913 j_mayer
{
978 8ecc7913 j_mayer
    ppc405_ocm_t *ocm;
979 8ecc7913 j_mayer
    uint32_t isarc, dsarc, isacntl, dsacntl;
980 8ecc7913 j_mayer
981 8ecc7913 j_mayer
    ocm = opaque;
982 8ecc7913 j_mayer
    isarc = ocm->isarc;
983 8ecc7913 j_mayer
    dsarc = ocm->dsarc;
984 8ecc7913 j_mayer
    isacntl = ocm->isacntl;
985 8ecc7913 j_mayer
    dsacntl = ocm->dsacntl;
986 8ecc7913 j_mayer
    switch (dcrn) {
987 8ecc7913 j_mayer
    case OCM0_ISARC:
988 8ecc7913 j_mayer
        isarc = val & 0xFC000000;
989 8ecc7913 j_mayer
        break;
990 8ecc7913 j_mayer
    case OCM0_ISACNTL:
991 8ecc7913 j_mayer
        isacntl = val & 0xC0000000;
992 8ecc7913 j_mayer
        break;
993 8ecc7913 j_mayer
    case OCM0_DSARC:
994 8ecc7913 j_mayer
        isarc = val & 0xFC000000;
995 8ecc7913 j_mayer
        break;
996 8ecc7913 j_mayer
    case OCM0_DSACNTL:
997 8ecc7913 j_mayer
        isacntl = val & 0xC0000000;
998 8ecc7913 j_mayer
        break;
999 8ecc7913 j_mayer
    }
1000 8ecc7913 j_mayer
    ocm_update_mappings(ocm, isarc, isacntl, dsarc, dsacntl);
1001 8ecc7913 j_mayer
    ocm->isarc = isarc;
1002 8ecc7913 j_mayer
    ocm->dsarc = dsarc;
1003 8ecc7913 j_mayer
    ocm->isacntl = isacntl;
1004 8ecc7913 j_mayer
    ocm->dsacntl = dsacntl;
1005 8ecc7913 j_mayer
}
1006 8ecc7913 j_mayer
1007 8ecc7913 j_mayer
static void ocm_reset (void *opaque)
1008 8ecc7913 j_mayer
{
1009 8ecc7913 j_mayer
    ppc405_ocm_t *ocm;
1010 8ecc7913 j_mayer
    uint32_t isarc, dsarc, isacntl, dsacntl;
1011 8ecc7913 j_mayer
1012 8ecc7913 j_mayer
    ocm = opaque;
1013 8ecc7913 j_mayer
    isarc = 0x00000000;
1014 8ecc7913 j_mayer
    isacntl = 0x00000000;
1015 8ecc7913 j_mayer
    dsarc = 0x00000000;
1016 8ecc7913 j_mayer
    dsacntl = 0x00000000;
1017 8ecc7913 j_mayer
    ocm_update_mappings(ocm, isarc, isacntl, dsarc, dsacntl);
1018 8ecc7913 j_mayer
    ocm->isarc = isarc;
1019 8ecc7913 j_mayer
    ocm->dsarc = dsarc;
1020 8ecc7913 j_mayer
    ocm->isacntl = isacntl;
1021 8ecc7913 j_mayer
    ocm->dsacntl = dsacntl;
1022 8ecc7913 j_mayer
}
1023 8ecc7913 j_mayer
1024 5c130f65 pbrook
void ppc405_ocm_init (CPUState *env)
1025 8ecc7913 j_mayer
{
1026 8ecc7913 j_mayer
    ppc405_ocm_t *ocm;
1027 8ecc7913 j_mayer
1028 8ecc7913 j_mayer
    ocm = qemu_mallocz(sizeof(ppc405_ocm_t));
1029 5c130f65 pbrook
    ocm->offset = qemu_ram_alloc(4096);
1030 487414f1 aliguori
    ocm_reset(ocm);
1031 8217606e Jan Kiszka
    qemu_register_reset(&ocm_reset, 0, ocm);
1032 487414f1 aliguori
    ppc_dcr_register(env, OCM0_ISARC,
1033 487414f1 aliguori
                     ocm, &dcr_read_ocm, &dcr_write_ocm);
1034 487414f1 aliguori
    ppc_dcr_register(env, OCM0_ISACNTL,
1035 487414f1 aliguori
                     ocm, &dcr_read_ocm, &dcr_write_ocm);
1036 487414f1 aliguori
    ppc_dcr_register(env, OCM0_DSARC,
1037 487414f1 aliguori
                     ocm, &dcr_read_ocm, &dcr_write_ocm);
1038 487414f1 aliguori
    ppc_dcr_register(env, OCM0_DSACNTL,
1039 487414f1 aliguori
                     ocm, &dcr_read_ocm, &dcr_write_ocm);
1040 8ecc7913 j_mayer
}
1041 8ecc7913 j_mayer
1042 8ecc7913 j_mayer
/*****************************************************************************/
1043 8ecc7913 j_mayer
/* I2C controller */
1044 8ecc7913 j_mayer
typedef struct ppc4xx_i2c_t ppc4xx_i2c_t;
1045 8ecc7913 j_mayer
struct ppc4xx_i2c_t {
1046 9c02f1a2 j_mayer
    target_phys_addr_t base;
1047 9c02f1a2 j_mayer
    qemu_irq irq;
1048 8ecc7913 j_mayer
    uint8_t mdata;
1049 8ecc7913 j_mayer
    uint8_t lmadr;
1050 8ecc7913 j_mayer
    uint8_t hmadr;
1051 8ecc7913 j_mayer
    uint8_t cntl;
1052 8ecc7913 j_mayer
    uint8_t mdcntl;
1053 8ecc7913 j_mayer
    uint8_t sts;
1054 8ecc7913 j_mayer
    uint8_t extsts;
1055 8ecc7913 j_mayer
    uint8_t sdata;
1056 8ecc7913 j_mayer
    uint8_t lsadr;
1057 8ecc7913 j_mayer
    uint8_t hsadr;
1058 8ecc7913 j_mayer
    uint8_t clkdiv;
1059 8ecc7913 j_mayer
    uint8_t intrmsk;
1060 8ecc7913 j_mayer
    uint8_t xfrcnt;
1061 8ecc7913 j_mayer
    uint8_t xtcntlss;
1062 8ecc7913 j_mayer
    uint8_t directcntl;
1063 8ecc7913 j_mayer
};
1064 8ecc7913 j_mayer
1065 8ecc7913 j_mayer
static uint32_t ppc4xx_i2c_readb (void *opaque, target_phys_addr_t addr)
1066 8ecc7913 j_mayer
{
1067 8ecc7913 j_mayer
    ppc4xx_i2c_t *i2c;
1068 8ecc7913 j_mayer
    uint32_t ret;
1069 8ecc7913 j_mayer
1070 8ecc7913 j_mayer
#ifdef DEBUG_I2C
1071 8ecc7913 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
1072 8ecc7913 j_mayer
#endif
1073 8ecc7913 j_mayer
    i2c = opaque;
1074 8ecc7913 j_mayer
    switch (addr - i2c->base) {
1075 8ecc7913 j_mayer
    case 0x00:
1076 8ecc7913 j_mayer
        //        i2c_readbyte(&i2c->mdata);
1077 8ecc7913 j_mayer
        ret = i2c->mdata;
1078 8ecc7913 j_mayer
        break;
1079 8ecc7913 j_mayer
    case 0x02:
1080 8ecc7913 j_mayer
        ret = i2c->sdata;
1081 8ecc7913 j_mayer
        break;
1082 8ecc7913 j_mayer
    case 0x04:
1083 8ecc7913 j_mayer
        ret = i2c->lmadr;
1084 8ecc7913 j_mayer
        break;
1085 8ecc7913 j_mayer
    case 0x05:
1086 8ecc7913 j_mayer
        ret = i2c->hmadr;
1087 8ecc7913 j_mayer
        break;
1088 8ecc7913 j_mayer
    case 0x06:
1089 8ecc7913 j_mayer
        ret = i2c->cntl;
1090 8ecc7913 j_mayer
        break;
1091 8ecc7913 j_mayer
    case 0x07:
1092 8ecc7913 j_mayer
        ret = i2c->mdcntl;
1093 8ecc7913 j_mayer
        break;
1094 8ecc7913 j_mayer
    case 0x08:
1095 8ecc7913 j_mayer
        ret = i2c->sts;
1096 8ecc7913 j_mayer
        break;
1097 8ecc7913 j_mayer
    case 0x09:
1098 8ecc7913 j_mayer
        ret = i2c->extsts;
1099 8ecc7913 j_mayer
        break;
1100 8ecc7913 j_mayer
    case 0x0A:
1101 8ecc7913 j_mayer
        ret = i2c->lsadr;
1102 8ecc7913 j_mayer
        break;
1103 8ecc7913 j_mayer
    case 0x0B:
1104 8ecc7913 j_mayer
        ret = i2c->hsadr;
1105 8ecc7913 j_mayer
        break;
1106 8ecc7913 j_mayer
    case 0x0C:
1107 8ecc7913 j_mayer
        ret = i2c->clkdiv;
1108 8ecc7913 j_mayer
        break;
1109 8ecc7913 j_mayer
    case 0x0D:
1110 8ecc7913 j_mayer
        ret = i2c->intrmsk;
1111 8ecc7913 j_mayer
        break;
1112 8ecc7913 j_mayer
    case 0x0E:
1113 8ecc7913 j_mayer
        ret = i2c->xfrcnt;
1114 8ecc7913 j_mayer
        break;
1115 8ecc7913 j_mayer
    case 0x0F:
1116 8ecc7913 j_mayer
        ret = i2c->xtcntlss;
1117 8ecc7913 j_mayer
        break;
1118 8ecc7913 j_mayer
    case 0x10:
1119 8ecc7913 j_mayer
        ret = i2c->directcntl;
1120 8ecc7913 j_mayer
        break;
1121 8ecc7913 j_mayer
    default:
1122 8ecc7913 j_mayer
        ret = 0x00;
1123 8ecc7913 j_mayer
        break;
1124 8ecc7913 j_mayer
    }
1125 8ecc7913 j_mayer
#ifdef DEBUG_I2C
1126 aae9366a j_mayer
    printf("%s: addr " PADDRX " %02" PRIx32 "\n", __func__, addr, ret);
1127 8ecc7913 j_mayer
#endif
1128 8ecc7913 j_mayer
1129 8ecc7913 j_mayer
    return ret;
1130 8ecc7913 j_mayer
}
1131 8ecc7913 j_mayer
1132 8ecc7913 j_mayer
static void ppc4xx_i2c_writeb (void *opaque,
1133 8ecc7913 j_mayer
                               target_phys_addr_t addr, uint32_t value)
1134 8ecc7913 j_mayer
{
1135 8ecc7913 j_mayer
    ppc4xx_i2c_t *i2c;
1136 8ecc7913 j_mayer
1137 8ecc7913 j_mayer
#ifdef DEBUG_I2C
1138 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
1139 8ecc7913 j_mayer
#endif
1140 8ecc7913 j_mayer
    i2c = opaque;
1141 8ecc7913 j_mayer
    switch (addr - i2c->base) {
1142 8ecc7913 j_mayer
    case 0x00:
1143 8ecc7913 j_mayer
        i2c->mdata = value;
1144 8ecc7913 j_mayer
        //        i2c_sendbyte(&i2c->mdata);
1145 8ecc7913 j_mayer
        break;
1146 8ecc7913 j_mayer
    case 0x02:
1147 8ecc7913 j_mayer
        i2c->sdata = value;
1148 8ecc7913 j_mayer
        break;
1149 8ecc7913 j_mayer
    case 0x04:
1150 8ecc7913 j_mayer
        i2c->lmadr = value;
1151 8ecc7913 j_mayer
        break;
1152 8ecc7913 j_mayer
    case 0x05:
1153 8ecc7913 j_mayer
        i2c->hmadr = value;
1154 8ecc7913 j_mayer
        break;
1155 8ecc7913 j_mayer
    case 0x06:
1156 8ecc7913 j_mayer
        i2c->cntl = value;
1157 8ecc7913 j_mayer
        break;
1158 8ecc7913 j_mayer
    case 0x07:
1159 8ecc7913 j_mayer
        i2c->mdcntl = value & 0xDF;
1160 8ecc7913 j_mayer
        break;
1161 8ecc7913 j_mayer
    case 0x08:
1162 8ecc7913 j_mayer
        i2c->sts &= ~(value & 0x0A);
1163 8ecc7913 j_mayer
        break;
1164 8ecc7913 j_mayer
    case 0x09:
1165 8ecc7913 j_mayer
        i2c->extsts &= ~(value & 0x8F);
1166 8ecc7913 j_mayer
        break;
1167 8ecc7913 j_mayer
    case 0x0A:
1168 8ecc7913 j_mayer
        i2c->lsadr = value;
1169 8ecc7913 j_mayer
        break;
1170 8ecc7913 j_mayer
    case 0x0B:
1171 8ecc7913 j_mayer
        i2c->hsadr = value;
1172 8ecc7913 j_mayer
        break;
1173 8ecc7913 j_mayer
    case 0x0C:
1174 8ecc7913 j_mayer
        i2c->clkdiv = value;
1175 8ecc7913 j_mayer
        break;
1176 8ecc7913 j_mayer
    case 0x0D:
1177 8ecc7913 j_mayer
        i2c->intrmsk = value;
1178 8ecc7913 j_mayer
        break;
1179 8ecc7913 j_mayer
    case 0x0E:
1180 8ecc7913 j_mayer
        i2c->xfrcnt = value & 0x77;
1181 8ecc7913 j_mayer
        break;
1182 8ecc7913 j_mayer
    case 0x0F:
1183 8ecc7913 j_mayer
        i2c->xtcntlss = value;
1184 8ecc7913 j_mayer
        break;
1185 8ecc7913 j_mayer
    case 0x10:
1186 8ecc7913 j_mayer
        i2c->directcntl = value & 0x7;
1187 8ecc7913 j_mayer
        break;
1188 8ecc7913 j_mayer
    }
1189 8ecc7913 j_mayer
}
1190 8ecc7913 j_mayer
1191 8ecc7913 j_mayer
static uint32_t ppc4xx_i2c_readw (void *opaque, target_phys_addr_t addr)
1192 8ecc7913 j_mayer
{
1193 8ecc7913 j_mayer
    uint32_t ret;
1194 8ecc7913 j_mayer
1195 8ecc7913 j_mayer
#ifdef DEBUG_I2C
1196 8ecc7913 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
1197 8ecc7913 j_mayer
#endif
1198 8ecc7913 j_mayer
    ret = ppc4xx_i2c_readb(opaque, addr) << 8;
1199 8ecc7913 j_mayer
    ret |= ppc4xx_i2c_readb(opaque, addr + 1);
1200 8ecc7913 j_mayer
1201 8ecc7913 j_mayer
    return ret;
1202 8ecc7913 j_mayer
}
1203 8ecc7913 j_mayer
1204 8ecc7913 j_mayer
static void ppc4xx_i2c_writew (void *opaque,
1205 8ecc7913 j_mayer
                               target_phys_addr_t addr, uint32_t value)
1206 8ecc7913 j_mayer
{
1207 8ecc7913 j_mayer
#ifdef DEBUG_I2C
1208 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
1209 8ecc7913 j_mayer
#endif
1210 8ecc7913 j_mayer
    ppc4xx_i2c_writeb(opaque, addr, value >> 8);
1211 8ecc7913 j_mayer
    ppc4xx_i2c_writeb(opaque, addr + 1, value);
1212 8ecc7913 j_mayer
}
1213 8ecc7913 j_mayer
1214 8ecc7913 j_mayer
static uint32_t ppc4xx_i2c_readl (void *opaque, target_phys_addr_t addr)
1215 8ecc7913 j_mayer
{
1216 8ecc7913 j_mayer
    uint32_t ret;
1217 8ecc7913 j_mayer
1218 8ecc7913 j_mayer
#ifdef DEBUG_I2C
1219 8ecc7913 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
1220 8ecc7913 j_mayer
#endif
1221 8ecc7913 j_mayer
    ret = ppc4xx_i2c_readb(opaque, addr) << 24;
1222 8ecc7913 j_mayer
    ret |= ppc4xx_i2c_readb(opaque, addr + 1) << 16;
1223 8ecc7913 j_mayer
    ret |= ppc4xx_i2c_readb(opaque, addr + 2) << 8;
1224 8ecc7913 j_mayer
    ret |= ppc4xx_i2c_readb(opaque, addr + 3);
1225 8ecc7913 j_mayer
1226 8ecc7913 j_mayer
    return ret;
1227 8ecc7913 j_mayer
}
1228 8ecc7913 j_mayer
1229 8ecc7913 j_mayer
static void ppc4xx_i2c_writel (void *opaque,
1230 8ecc7913 j_mayer
                               target_phys_addr_t addr, uint32_t value)
1231 8ecc7913 j_mayer
{
1232 8ecc7913 j_mayer
#ifdef DEBUG_I2C
1233 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
1234 8ecc7913 j_mayer
#endif
1235 8ecc7913 j_mayer
    ppc4xx_i2c_writeb(opaque, addr, value >> 24);
1236 8ecc7913 j_mayer
    ppc4xx_i2c_writeb(opaque, addr + 1, value >> 16);
1237 8ecc7913 j_mayer
    ppc4xx_i2c_writeb(opaque, addr + 2, value >> 8);
1238 8ecc7913 j_mayer
    ppc4xx_i2c_writeb(opaque, addr + 3, value);
1239 8ecc7913 j_mayer
}
1240 8ecc7913 j_mayer
1241 8ecc7913 j_mayer
static CPUReadMemoryFunc *i2c_read[] = {
1242 8ecc7913 j_mayer
    &ppc4xx_i2c_readb,
1243 8ecc7913 j_mayer
    &ppc4xx_i2c_readw,
1244 8ecc7913 j_mayer
    &ppc4xx_i2c_readl,
1245 8ecc7913 j_mayer
};
1246 8ecc7913 j_mayer
1247 8ecc7913 j_mayer
static CPUWriteMemoryFunc *i2c_write[] = {
1248 8ecc7913 j_mayer
    &ppc4xx_i2c_writeb,
1249 8ecc7913 j_mayer
    &ppc4xx_i2c_writew,
1250 8ecc7913 j_mayer
    &ppc4xx_i2c_writel,
1251 8ecc7913 j_mayer
};
1252 8ecc7913 j_mayer
1253 8ecc7913 j_mayer
static void ppc4xx_i2c_reset (void *opaque)
1254 8ecc7913 j_mayer
{
1255 8ecc7913 j_mayer
    ppc4xx_i2c_t *i2c;
1256 8ecc7913 j_mayer
1257 8ecc7913 j_mayer
    i2c = opaque;
1258 8ecc7913 j_mayer
    i2c->mdata = 0x00;
1259 8ecc7913 j_mayer
    i2c->sdata = 0x00;
1260 8ecc7913 j_mayer
    i2c->cntl = 0x00;
1261 8ecc7913 j_mayer
    i2c->mdcntl = 0x00;
1262 8ecc7913 j_mayer
    i2c->sts = 0x00;
1263 8ecc7913 j_mayer
    i2c->extsts = 0x00;
1264 8ecc7913 j_mayer
    i2c->clkdiv = 0x00;
1265 8ecc7913 j_mayer
    i2c->xfrcnt = 0x00;
1266 8ecc7913 j_mayer
    i2c->directcntl = 0x0F;
1267 8ecc7913 j_mayer
}
1268 8ecc7913 j_mayer
1269 9c02f1a2 j_mayer
void ppc405_i2c_init (CPUState *env, ppc4xx_mmio_t *mmio,
1270 9c02f1a2 j_mayer
                      target_phys_addr_t offset, qemu_irq irq)
1271 8ecc7913 j_mayer
{
1272 8ecc7913 j_mayer
    ppc4xx_i2c_t *i2c;
1273 8ecc7913 j_mayer
1274 8ecc7913 j_mayer
    i2c = qemu_mallocz(sizeof(ppc4xx_i2c_t));
1275 487414f1 aliguori
    i2c->base = offset;
1276 487414f1 aliguori
    i2c->irq = irq;
1277 487414f1 aliguori
    ppc4xx_i2c_reset(i2c);
1278 8ecc7913 j_mayer
#ifdef DEBUG_I2C
1279 487414f1 aliguori
    printf("%s: offset " PADDRX "\n", __func__, offset);
1280 8ecc7913 j_mayer
#endif
1281 487414f1 aliguori
    ppc4xx_mmio_register(env, mmio, offset, 0x011,
1282 487414f1 aliguori
                         i2c_read, i2c_write, i2c);
1283 8217606e Jan Kiszka
    qemu_register_reset(ppc4xx_i2c_reset, 0, i2c);
1284 8ecc7913 j_mayer
}
1285 8ecc7913 j_mayer
1286 8ecc7913 j_mayer
/*****************************************************************************/
1287 9c02f1a2 j_mayer
/* General purpose timers */
1288 9c02f1a2 j_mayer
typedef struct ppc4xx_gpt_t ppc4xx_gpt_t;
1289 9c02f1a2 j_mayer
struct ppc4xx_gpt_t {
1290 9c02f1a2 j_mayer
    target_phys_addr_t base;
1291 9c02f1a2 j_mayer
    int64_t tb_offset;
1292 9c02f1a2 j_mayer
    uint32_t tb_freq;
1293 9c02f1a2 j_mayer
    struct QEMUTimer *timer;
1294 9c02f1a2 j_mayer
    qemu_irq irqs[5];
1295 9c02f1a2 j_mayer
    uint32_t oe;
1296 9c02f1a2 j_mayer
    uint32_t ol;
1297 9c02f1a2 j_mayer
    uint32_t im;
1298 9c02f1a2 j_mayer
    uint32_t is;
1299 9c02f1a2 j_mayer
    uint32_t ie;
1300 9c02f1a2 j_mayer
    uint32_t comp[5];
1301 9c02f1a2 j_mayer
    uint32_t mask[5];
1302 9c02f1a2 j_mayer
};
1303 9c02f1a2 j_mayer
1304 9c02f1a2 j_mayer
static uint32_t ppc4xx_gpt_readb (void *opaque, target_phys_addr_t addr)
1305 9c02f1a2 j_mayer
{
1306 9c02f1a2 j_mayer
#ifdef DEBUG_GPT
1307 9c02f1a2 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
1308 9c02f1a2 j_mayer
#endif
1309 9c02f1a2 j_mayer
    /* XXX: generate a bus fault */
1310 9c02f1a2 j_mayer
    return -1;
1311 9c02f1a2 j_mayer
}
1312 9c02f1a2 j_mayer
1313 9c02f1a2 j_mayer
static void ppc4xx_gpt_writeb (void *opaque,
1314 9c02f1a2 j_mayer
                               target_phys_addr_t addr, uint32_t value)
1315 9c02f1a2 j_mayer
{
1316 9c02f1a2 j_mayer
#ifdef DEBUG_I2C
1317 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
1318 9c02f1a2 j_mayer
#endif
1319 9c02f1a2 j_mayer
    /* XXX: generate a bus fault */
1320 9c02f1a2 j_mayer
}
1321 9c02f1a2 j_mayer
1322 9c02f1a2 j_mayer
static uint32_t ppc4xx_gpt_readw (void *opaque, target_phys_addr_t addr)
1323 9c02f1a2 j_mayer
{
1324 9c02f1a2 j_mayer
#ifdef DEBUG_GPT
1325 9c02f1a2 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
1326 9c02f1a2 j_mayer
#endif
1327 9c02f1a2 j_mayer
    /* XXX: generate a bus fault */
1328 9c02f1a2 j_mayer
    return -1;
1329 9c02f1a2 j_mayer
}
1330 9c02f1a2 j_mayer
1331 9c02f1a2 j_mayer
static void ppc4xx_gpt_writew (void *opaque,
1332 9c02f1a2 j_mayer
                               target_phys_addr_t addr, uint32_t value)
1333 9c02f1a2 j_mayer
{
1334 9c02f1a2 j_mayer
#ifdef DEBUG_I2C
1335 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
1336 9c02f1a2 j_mayer
#endif
1337 9c02f1a2 j_mayer
    /* XXX: generate a bus fault */
1338 9c02f1a2 j_mayer
}
1339 9c02f1a2 j_mayer
1340 9c02f1a2 j_mayer
static int ppc4xx_gpt_compare (ppc4xx_gpt_t *gpt, int n)
1341 9c02f1a2 j_mayer
{
1342 9c02f1a2 j_mayer
    /* XXX: TODO */
1343 9c02f1a2 j_mayer
    return 0;
1344 9c02f1a2 j_mayer
}
1345 9c02f1a2 j_mayer
1346 9c02f1a2 j_mayer
static void ppc4xx_gpt_set_output (ppc4xx_gpt_t *gpt, int n, int level)
1347 9c02f1a2 j_mayer
{
1348 9c02f1a2 j_mayer
    /* XXX: TODO */
1349 9c02f1a2 j_mayer
}
1350 9c02f1a2 j_mayer
1351 9c02f1a2 j_mayer
static void ppc4xx_gpt_set_outputs (ppc4xx_gpt_t *gpt)
1352 9c02f1a2 j_mayer
{
1353 9c02f1a2 j_mayer
    uint32_t mask;
1354 9c02f1a2 j_mayer
    int i;
1355 9c02f1a2 j_mayer
1356 9c02f1a2 j_mayer
    mask = 0x80000000;
1357 9c02f1a2 j_mayer
    for (i = 0; i < 5; i++) {
1358 9c02f1a2 j_mayer
        if (gpt->oe & mask) {
1359 9c02f1a2 j_mayer
            /* Output is enabled */
1360 9c02f1a2 j_mayer
            if (ppc4xx_gpt_compare(gpt, i)) {
1361 9c02f1a2 j_mayer
                /* Comparison is OK */
1362 9c02f1a2 j_mayer
                ppc4xx_gpt_set_output(gpt, i, gpt->ol & mask);
1363 9c02f1a2 j_mayer
            } else {
1364 9c02f1a2 j_mayer
                /* Comparison is KO */
1365 9c02f1a2 j_mayer
                ppc4xx_gpt_set_output(gpt, i, gpt->ol & mask ? 0 : 1);
1366 9c02f1a2 j_mayer
            }
1367 9c02f1a2 j_mayer
        }
1368 9c02f1a2 j_mayer
        mask = mask >> 1;
1369 9c02f1a2 j_mayer
    }
1370 9c02f1a2 j_mayer
}
1371 9c02f1a2 j_mayer
1372 9c02f1a2 j_mayer
static void ppc4xx_gpt_set_irqs (ppc4xx_gpt_t *gpt)
1373 9c02f1a2 j_mayer
{
1374 9c02f1a2 j_mayer
    uint32_t mask;
1375 9c02f1a2 j_mayer
    int i;
1376 9c02f1a2 j_mayer
1377 9c02f1a2 j_mayer
    mask = 0x00008000;
1378 9c02f1a2 j_mayer
    for (i = 0; i < 5; i++) {
1379 9c02f1a2 j_mayer
        if (gpt->is & gpt->im & mask)
1380 9c02f1a2 j_mayer
            qemu_irq_raise(gpt->irqs[i]);
1381 9c02f1a2 j_mayer
        else
1382 9c02f1a2 j_mayer
            qemu_irq_lower(gpt->irqs[i]);
1383 9c02f1a2 j_mayer
        mask = mask >> 1;
1384 9c02f1a2 j_mayer
    }
1385 9c02f1a2 j_mayer
}
1386 9c02f1a2 j_mayer
1387 9c02f1a2 j_mayer
static void ppc4xx_gpt_compute_timer (ppc4xx_gpt_t *gpt)
1388 9c02f1a2 j_mayer
{
1389 9c02f1a2 j_mayer
    /* XXX: TODO */
1390 9c02f1a2 j_mayer
}
1391 9c02f1a2 j_mayer
1392 9c02f1a2 j_mayer
static uint32_t ppc4xx_gpt_readl (void *opaque, target_phys_addr_t addr)
1393 9c02f1a2 j_mayer
{
1394 9c02f1a2 j_mayer
    ppc4xx_gpt_t *gpt;
1395 9c02f1a2 j_mayer
    uint32_t ret;
1396 9c02f1a2 j_mayer
    int idx;
1397 9c02f1a2 j_mayer
1398 9c02f1a2 j_mayer
#ifdef DEBUG_GPT
1399 9c02f1a2 j_mayer
    printf("%s: addr " PADDRX "\n", __func__, addr);
1400 9c02f1a2 j_mayer
#endif
1401 9c02f1a2 j_mayer
    gpt = opaque;
1402 9c02f1a2 j_mayer
    switch (addr - gpt->base) {
1403 9c02f1a2 j_mayer
    case 0x00:
1404 9c02f1a2 j_mayer
        /* Time base counter */
1405 9c02f1a2 j_mayer
        ret = muldiv64(qemu_get_clock(vm_clock) + gpt->tb_offset,
1406 9c02f1a2 j_mayer
                       gpt->tb_freq, ticks_per_sec);
1407 9c02f1a2 j_mayer
        break;
1408 9c02f1a2 j_mayer
    case 0x10:
1409 9c02f1a2 j_mayer
        /* Output enable */
1410 9c02f1a2 j_mayer
        ret = gpt->oe;
1411 9c02f1a2 j_mayer
        break;
1412 9c02f1a2 j_mayer
    case 0x14:
1413 9c02f1a2 j_mayer
        /* Output level */
1414 9c02f1a2 j_mayer
        ret = gpt->ol;
1415 9c02f1a2 j_mayer
        break;
1416 9c02f1a2 j_mayer
    case 0x18:
1417 9c02f1a2 j_mayer
        /* Interrupt mask */
1418 9c02f1a2 j_mayer
        ret = gpt->im;
1419 9c02f1a2 j_mayer
        break;
1420 9c02f1a2 j_mayer
    case 0x1C:
1421 9c02f1a2 j_mayer
    case 0x20:
1422 9c02f1a2 j_mayer
        /* Interrupt status */
1423 9c02f1a2 j_mayer
        ret = gpt->is;
1424 9c02f1a2 j_mayer
        break;
1425 9c02f1a2 j_mayer
    case 0x24:
1426 9c02f1a2 j_mayer
        /* Interrupt enable */
1427 9c02f1a2 j_mayer
        ret = gpt->ie;
1428 9c02f1a2 j_mayer
        break;
1429 9c02f1a2 j_mayer
    case 0x80 ... 0x90:
1430 9c02f1a2 j_mayer
        /* Compare timer */
1431 9c02f1a2 j_mayer
        idx = ((addr - gpt->base) - 0x80) >> 2;
1432 9c02f1a2 j_mayer
        ret = gpt->comp[idx];
1433 9c02f1a2 j_mayer
        break;
1434 9c02f1a2 j_mayer
    case 0xC0 ... 0xD0:
1435 9c02f1a2 j_mayer
        /* Compare mask */
1436 9c02f1a2 j_mayer
        idx = ((addr - gpt->base) - 0xC0) >> 2;
1437 9c02f1a2 j_mayer
        ret = gpt->mask[idx];
1438 9c02f1a2 j_mayer
        break;
1439 9c02f1a2 j_mayer
    default:
1440 9c02f1a2 j_mayer
        ret = -1;
1441 9c02f1a2 j_mayer
        break;
1442 9c02f1a2 j_mayer
    }
1443 9c02f1a2 j_mayer
1444 9c02f1a2 j_mayer
    return ret;
1445 9c02f1a2 j_mayer
}
1446 9c02f1a2 j_mayer
1447 9c02f1a2 j_mayer
static void ppc4xx_gpt_writel (void *opaque,
1448 9c02f1a2 j_mayer
                               target_phys_addr_t addr, uint32_t value)
1449 9c02f1a2 j_mayer
{
1450 9c02f1a2 j_mayer
    ppc4xx_gpt_t *gpt;
1451 9c02f1a2 j_mayer
    int idx;
1452 9c02f1a2 j_mayer
1453 9c02f1a2 j_mayer
#ifdef DEBUG_I2C
1454 aae9366a j_mayer
    printf("%s: addr " PADDRX " val %08" PRIx32 "\n", __func__, addr, value);
1455 9c02f1a2 j_mayer
#endif
1456 9c02f1a2 j_mayer
    gpt = opaque;
1457 9c02f1a2 j_mayer
    switch (addr - gpt->base) {
1458 9c02f1a2 j_mayer
    case 0x00:
1459 9c02f1a2 j_mayer
        /* Time base counter */
1460 9c02f1a2 j_mayer
        gpt->tb_offset = muldiv64(value, ticks_per_sec, gpt->tb_freq)
1461 9c02f1a2 j_mayer
            - qemu_get_clock(vm_clock);
1462 9c02f1a2 j_mayer
        ppc4xx_gpt_compute_timer(gpt);
1463 9c02f1a2 j_mayer
        break;
1464 9c02f1a2 j_mayer
    case 0x10:
1465 9c02f1a2 j_mayer
        /* Output enable */
1466 9c02f1a2 j_mayer
        gpt->oe = value & 0xF8000000;
1467 9c02f1a2 j_mayer
        ppc4xx_gpt_set_outputs(gpt);
1468 9c02f1a2 j_mayer
        break;
1469 9c02f1a2 j_mayer
    case 0x14:
1470 9c02f1a2 j_mayer
        /* Output level */
1471 9c02f1a2 j_mayer
        gpt->ol = value & 0xF8000000;
1472 9c02f1a2 j_mayer
        ppc4xx_gpt_set_outputs(gpt);
1473 9c02f1a2 j_mayer
        break;
1474 9c02f1a2 j_mayer
    case 0x18:
1475 9c02f1a2 j_mayer
        /* Interrupt mask */
1476 9c02f1a2 j_mayer
        gpt->im = value & 0x0000F800;
1477 9c02f1a2 j_mayer
        break;
1478 9c02f1a2 j_mayer
    case 0x1C:
1479 9c02f1a2 j_mayer
        /* Interrupt status set */
1480 9c02f1a2 j_mayer
        gpt->is |= value & 0x0000F800;
1481 9c02f1a2 j_mayer
        ppc4xx_gpt_set_irqs(gpt);
1482 9c02f1a2 j_mayer
        break;
1483 9c02f1a2 j_mayer
    case 0x20:
1484 9c02f1a2 j_mayer
        /* Interrupt status clear */
1485 9c02f1a2 j_mayer
        gpt->is &= ~(value & 0x0000F800);
1486 9c02f1a2 j_mayer
        ppc4xx_gpt_set_irqs(gpt);
1487 9c02f1a2 j_mayer
        break;
1488 9c02f1a2 j_mayer
    case 0x24:
1489 9c02f1a2 j_mayer
        /* Interrupt enable */
1490 9c02f1a2 j_mayer
        gpt->ie = value & 0x0000F800;
1491 9c02f1a2 j_mayer
        ppc4xx_gpt_set_irqs(gpt);
1492 9c02f1a2 j_mayer
        break;
1493 9c02f1a2 j_mayer
    case 0x80 ... 0x90:
1494 9c02f1a2 j_mayer
        /* Compare timer */
1495 9c02f1a2 j_mayer
        idx = ((addr - gpt->base) - 0x80) >> 2;
1496 9c02f1a2 j_mayer
        gpt->comp[idx] = value & 0xF8000000;
1497 9c02f1a2 j_mayer
        ppc4xx_gpt_compute_timer(gpt);
1498 9c02f1a2 j_mayer
        break;
1499 9c02f1a2 j_mayer
    case 0xC0 ... 0xD0:
1500 9c02f1a2 j_mayer
        /* Compare mask */
1501 9c02f1a2 j_mayer
        idx = ((addr - gpt->base) - 0xC0) >> 2;
1502 9c02f1a2 j_mayer
        gpt->mask[idx] = value & 0xF8000000;
1503 9c02f1a2 j_mayer
        ppc4xx_gpt_compute_timer(gpt);
1504 9c02f1a2 j_mayer
        break;
1505 9c02f1a2 j_mayer
    }
1506 9c02f1a2 j_mayer
}
1507 9c02f1a2 j_mayer
1508 9c02f1a2 j_mayer
static CPUReadMemoryFunc *gpt_read[] = {
1509 9c02f1a2 j_mayer
    &ppc4xx_gpt_readb,
1510 9c02f1a2 j_mayer
    &ppc4xx_gpt_readw,
1511 9c02f1a2 j_mayer
    &ppc4xx_gpt_readl,
1512 9c02f1a2 j_mayer
};
1513 9c02f1a2 j_mayer
1514 9c02f1a2 j_mayer
static CPUWriteMemoryFunc *gpt_write[] = {
1515 9c02f1a2 j_mayer
    &ppc4xx_gpt_writeb,
1516 9c02f1a2 j_mayer
    &ppc4xx_gpt_writew,
1517 9c02f1a2 j_mayer
    &ppc4xx_gpt_writel,
1518 9c02f1a2 j_mayer
};
1519 9c02f1a2 j_mayer
1520 9c02f1a2 j_mayer
static void ppc4xx_gpt_cb (void *opaque)
1521 9c02f1a2 j_mayer
{
1522 9c02f1a2 j_mayer
    ppc4xx_gpt_t *gpt;
1523 9c02f1a2 j_mayer
1524 9c02f1a2 j_mayer
    gpt = opaque;
1525 9c02f1a2 j_mayer
    ppc4xx_gpt_set_irqs(gpt);
1526 9c02f1a2 j_mayer
    ppc4xx_gpt_set_outputs(gpt);
1527 9c02f1a2 j_mayer
    ppc4xx_gpt_compute_timer(gpt);
1528 9c02f1a2 j_mayer
}
1529 9c02f1a2 j_mayer
1530 9c02f1a2 j_mayer
static void ppc4xx_gpt_reset (void *opaque)
1531 9c02f1a2 j_mayer
{
1532 9c02f1a2 j_mayer
    ppc4xx_gpt_t *gpt;
1533 9c02f1a2 j_mayer
    int i;
1534 9c02f1a2 j_mayer
1535 9c02f1a2 j_mayer
    gpt = opaque;
1536 9c02f1a2 j_mayer
    qemu_del_timer(gpt->timer);
1537 9c02f1a2 j_mayer
    gpt->oe = 0x00000000;
1538 9c02f1a2 j_mayer
    gpt->ol = 0x00000000;
1539 9c02f1a2 j_mayer
    gpt->im = 0x00000000;
1540 9c02f1a2 j_mayer
    gpt->is = 0x00000000;
1541 9c02f1a2 j_mayer
    gpt->ie = 0x00000000;
1542 9c02f1a2 j_mayer
    for (i = 0; i < 5; i++) {
1543 9c02f1a2 j_mayer
        gpt->comp[i] = 0x00000000;
1544 9c02f1a2 j_mayer
        gpt->mask[i] = 0x00000000;
1545 9c02f1a2 j_mayer
    }
1546 9c02f1a2 j_mayer
}
1547 9c02f1a2 j_mayer
1548 9c02f1a2 j_mayer
void ppc4xx_gpt_init (CPUState *env, ppc4xx_mmio_t *mmio,
1549 9c02f1a2 j_mayer
                      target_phys_addr_t offset, qemu_irq irqs[5])
1550 9c02f1a2 j_mayer
{
1551 9c02f1a2 j_mayer
    ppc4xx_gpt_t *gpt;
1552 9c02f1a2 j_mayer
    int i;
1553 9c02f1a2 j_mayer
1554 9c02f1a2 j_mayer
    gpt = qemu_mallocz(sizeof(ppc4xx_gpt_t));
1555 487414f1 aliguori
    gpt->base = offset;
1556 487414f1 aliguori
    for (i = 0; i < 5; i++)
1557 487414f1 aliguori
        gpt->irqs[i] = irqs[i];
1558 487414f1 aliguori
    gpt->timer = qemu_new_timer(vm_clock, &ppc4xx_gpt_cb, gpt);
1559 487414f1 aliguori
    ppc4xx_gpt_reset(gpt);
1560 9c02f1a2 j_mayer
#ifdef DEBUG_GPT
1561 487414f1 aliguori
    printf("%s: offset " PADDRX "\n", __func__, offset);
1562 9c02f1a2 j_mayer
#endif
1563 487414f1 aliguori
    ppc4xx_mmio_register(env, mmio, offset, 0x0D4,
1564 487414f1 aliguori
                         gpt_read, gpt_write, gpt);
1565 8217606e Jan Kiszka
    qemu_register_reset(ppc4xx_gpt_reset, 0, gpt);
1566 9c02f1a2 j_mayer
}
1567 9c02f1a2 j_mayer
1568 9c02f1a2 j_mayer
/*****************************************************************************/
1569 9c02f1a2 j_mayer
/* MAL */
1570 9c02f1a2 j_mayer
enum {
1571 9c02f1a2 j_mayer
    MAL0_CFG      = 0x180,
1572 9c02f1a2 j_mayer
    MAL0_ESR      = 0x181,
1573 9c02f1a2 j_mayer
    MAL0_IER      = 0x182,
1574 9c02f1a2 j_mayer
    MAL0_TXCASR   = 0x184,
1575 9c02f1a2 j_mayer
    MAL0_TXCARR   = 0x185,
1576 9c02f1a2 j_mayer
    MAL0_TXEOBISR = 0x186,
1577 9c02f1a2 j_mayer
    MAL0_TXDEIR   = 0x187,
1578 9c02f1a2 j_mayer
    MAL0_RXCASR   = 0x190,
1579 9c02f1a2 j_mayer
    MAL0_RXCARR   = 0x191,
1580 9c02f1a2 j_mayer
    MAL0_RXEOBISR = 0x192,
1581 9c02f1a2 j_mayer
    MAL0_RXDEIR   = 0x193,
1582 9c02f1a2 j_mayer
    MAL0_TXCTP0R  = 0x1A0,
1583 9c02f1a2 j_mayer
    MAL0_TXCTP1R  = 0x1A1,
1584 9c02f1a2 j_mayer
    MAL0_TXCTP2R  = 0x1A2,
1585 9c02f1a2 j_mayer
    MAL0_TXCTP3R  = 0x1A3,
1586 9c02f1a2 j_mayer
    MAL0_RXCTP0R  = 0x1C0,
1587 9c02f1a2 j_mayer
    MAL0_RXCTP1R  = 0x1C1,
1588 9c02f1a2 j_mayer
    MAL0_RCBS0    = 0x1E0,
1589 9c02f1a2 j_mayer
    MAL0_RCBS1    = 0x1E1,
1590 9c02f1a2 j_mayer
};
1591 9c02f1a2 j_mayer
1592 9c02f1a2 j_mayer
typedef struct ppc40x_mal_t ppc40x_mal_t;
1593 9c02f1a2 j_mayer
struct ppc40x_mal_t {
1594 9c02f1a2 j_mayer
    qemu_irq irqs[4];
1595 9c02f1a2 j_mayer
    uint32_t cfg;
1596 9c02f1a2 j_mayer
    uint32_t esr;
1597 9c02f1a2 j_mayer
    uint32_t ier;
1598 9c02f1a2 j_mayer
    uint32_t txcasr;
1599 9c02f1a2 j_mayer
    uint32_t txcarr;
1600 9c02f1a2 j_mayer
    uint32_t txeobisr;
1601 9c02f1a2 j_mayer
    uint32_t txdeir;
1602 9c02f1a2 j_mayer
    uint32_t rxcasr;
1603 9c02f1a2 j_mayer
    uint32_t rxcarr;
1604 9c02f1a2 j_mayer
    uint32_t rxeobisr;
1605 9c02f1a2 j_mayer
    uint32_t rxdeir;
1606 9c02f1a2 j_mayer
    uint32_t txctpr[4];
1607 9c02f1a2 j_mayer
    uint32_t rxctpr[2];
1608 9c02f1a2 j_mayer
    uint32_t rcbs[2];
1609 9c02f1a2 j_mayer
};
1610 9c02f1a2 j_mayer
1611 9c02f1a2 j_mayer
static void ppc40x_mal_reset (void *opaque);
1612 9c02f1a2 j_mayer
1613 9c02f1a2 j_mayer
static target_ulong dcr_read_mal (void *opaque, int dcrn)
1614 9c02f1a2 j_mayer
{
1615 9c02f1a2 j_mayer
    ppc40x_mal_t *mal;
1616 9c02f1a2 j_mayer
    target_ulong ret;
1617 9c02f1a2 j_mayer
1618 9c02f1a2 j_mayer
    mal = opaque;
1619 9c02f1a2 j_mayer
    switch (dcrn) {
1620 9c02f1a2 j_mayer
    case MAL0_CFG:
1621 9c02f1a2 j_mayer
        ret = mal->cfg;
1622 9c02f1a2 j_mayer
        break;
1623 9c02f1a2 j_mayer
    case MAL0_ESR:
1624 9c02f1a2 j_mayer
        ret = mal->esr;
1625 9c02f1a2 j_mayer
        break;
1626 9c02f1a2 j_mayer
    case MAL0_IER:
1627 9c02f1a2 j_mayer
        ret = mal->ier;
1628 9c02f1a2 j_mayer
        break;
1629 9c02f1a2 j_mayer
    case MAL0_TXCASR:
1630 9c02f1a2 j_mayer
        ret = mal->txcasr;
1631 9c02f1a2 j_mayer
        break;
1632 9c02f1a2 j_mayer
    case MAL0_TXCARR:
1633 9c02f1a2 j_mayer
        ret = mal->txcarr;
1634 9c02f1a2 j_mayer
        break;
1635 9c02f1a2 j_mayer
    case MAL0_TXEOBISR:
1636 9c02f1a2 j_mayer
        ret = mal->txeobisr;
1637 9c02f1a2 j_mayer
        break;
1638 9c02f1a2 j_mayer
    case MAL0_TXDEIR:
1639 9c02f1a2 j_mayer
        ret = mal->txdeir;
1640 9c02f1a2 j_mayer
        break;
1641 9c02f1a2 j_mayer
    case MAL0_RXCASR:
1642 9c02f1a2 j_mayer
        ret = mal->rxcasr;
1643 9c02f1a2 j_mayer
        break;
1644 9c02f1a2 j_mayer
    case MAL0_RXCARR:
1645 9c02f1a2 j_mayer
        ret = mal->rxcarr;
1646 9c02f1a2 j_mayer
        break;
1647 9c02f1a2 j_mayer
    case MAL0_RXEOBISR:
1648 9c02f1a2 j_mayer
        ret = mal->rxeobisr;
1649 9c02f1a2 j_mayer
        break;
1650 9c02f1a2 j_mayer
    case MAL0_RXDEIR:
1651 9c02f1a2 j_mayer
        ret = mal->rxdeir;
1652 9c02f1a2 j_mayer
        break;
1653 9c02f1a2 j_mayer
    case MAL0_TXCTP0R:
1654 9c02f1a2 j_mayer
        ret = mal->txctpr[0];
1655 9c02f1a2 j_mayer
        break;
1656 9c02f1a2 j_mayer
    case MAL0_TXCTP1R:
1657 9c02f1a2 j_mayer
        ret = mal->txctpr[1];
1658 9c02f1a2 j_mayer
        break;
1659 9c02f1a2 j_mayer
    case MAL0_TXCTP2R:
1660 9c02f1a2 j_mayer
        ret = mal->txctpr[2];
1661 9c02f1a2 j_mayer
        break;
1662 9c02f1a2 j_mayer
    case MAL0_TXCTP3R:
1663 9c02f1a2 j_mayer
        ret = mal->txctpr[3];
1664 9c02f1a2 j_mayer
        break;
1665 9c02f1a2 j_mayer
    case MAL0_RXCTP0R:
1666 9c02f1a2 j_mayer
        ret = mal->rxctpr[0];
1667 9c02f1a2 j_mayer
        break;
1668 9c02f1a2 j_mayer
    case MAL0_RXCTP1R:
1669 9c02f1a2 j_mayer
        ret = mal->rxctpr[1];
1670 9c02f1a2 j_mayer
        break;
1671 9c02f1a2 j_mayer
    case MAL0_RCBS0:
1672 9c02f1a2 j_mayer
        ret = mal->rcbs[0];
1673 9c02f1a2 j_mayer
        break;
1674 9c02f1a2 j_mayer
    case MAL0_RCBS1:
1675 9c02f1a2 j_mayer
        ret = mal->rcbs[1];
1676 9c02f1a2 j_mayer
        break;
1677 9c02f1a2 j_mayer
    default:
1678 9c02f1a2 j_mayer
        ret = 0;
1679 9c02f1a2 j_mayer
        break;
1680 9c02f1a2 j_mayer
    }
1681 9c02f1a2 j_mayer
1682 9c02f1a2 j_mayer
    return ret;
1683 9c02f1a2 j_mayer
}
1684 9c02f1a2 j_mayer
1685 9c02f1a2 j_mayer
static void dcr_write_mal (void *opaque, int dcrn, target_ulong val)
1686 9c02f1a2 j_mayer
{
1687 9c02f1a2 j_mayer
    ppc40x_mal_t *mal;
1688 9c02f1a2 j_mayer
    int idx;
1689 9c02f1a2 j_mayer
1690 9c02f1a2 j_mayer
    mal = opaque;
1691 9c02f1a2 j_mayer
    switch (dcrn) {
1692 9c02f1a2 j_mayer
    case MAL0_CFG:
1693 9c02f1a2 j_mayer
        if (val & 0x80000000)
1694 9c02f1a2 j_mayer
            ppc40x_mal_reset(mal);
1695 9c02f1a2 j_mayer
        mal->cfg = val & 0x00FFC087;
1696 9c02f1a2 j_mayer
        break;
1697 9c02f1a2 j_mayer
    case MAL0_ESR:
1698 9c02f1a2 j_mayer
        /* Read/clear */
1699 9c02f1a2 j_mayer
        mal->esr &= ~val;
1700 9c02f1a2 j_mayer
        break;
1701 9c02f1a2 j_mayer
    case MAL0_IER:
1702 9c02f1a2 j_mayer
        mal->ier = val & 0x0000001F;
1703 9c02f1a2 j_mayer
        break;
1704 9c02f1a2 j_mayer
    case MAL0_TXCASR:
1705 9c02f1a2 j_mayer
        mal->txcasr = val & 0xF0000000;
1706 9c02f1a2 j_mayer
        break;
1707 9c02f1a2 j_mayer
    case MAL0_TXCARR:
1708 9c02f1a2 j_mayer
        mal->txcarr = val & 0xF0000000;
1709 9c02f1a2 j_mayer
        break;
1710 9c02f1a2 j_mayer
    case MAL0_TXEOBISR:
1711 9c02f1a2 j_mayer
        /* Read/clear */
1712 9c02f1a2 j_mayer
        mal->txeobisr &= ~val;
1713 9c02f1a2 j_mayer
        break;
1714 9c02f1a2 j_mayer
    case MAL0_TXDEIR:
1715 9c02f1a2 j_mayer
        /* Read/clear */
1716 9c02f1a2 j_mayer
        mal->txdeir &= ~val;
1717 9c02f1a2 j_mayer
        break;
1718 9c02f1a2 j_mayer
    case MAL0_RXCASR:
1719 9c02f1a2 j_mayer
        mal->rxcasr = val & 0xC0000000;
1720 9c02f1a2 j_mayer
        break;
1721 9c02f1a2 j_mayer
    case MAL0_RXCARR:
1722 9c02f1a2 j_mayer
        mal->rxcarr = val & 0xC0000000;
1723 9c02f1a2 j_mayer
        break;
1724 9c02f1a2 j_mayer
    case MAL0_RXEOBISR:
1725 9c02f1a2 j_mayer
        /* Read/clear */
1726 9c02f1a2 j_mayer
        mal->rxeobisr &= ~val;
1727 9c02f1a2 j_mayer
        break;
1728 9c02f1a2 j_mayer
    case MAL0_RXDEIR:
1729 9c02f1a2 j_mayer
        /* Read/clear */
1730 9c02f1a2 j_mayer
        mal->rxdeir &= ~val;
1731 9c02f1a2 j_mayer
        break;
1732 9c02f1a2 j_mayer
    case MAL0_TXCTP0R:
1733 9c02f1a2 j_mayer
        idx = 0;
1734 9c02f1a2 j_mayer
        goto update_tx_ptr;
1735 9c02f1a2 j_mayer
    case MAL0_TXCTP1R:
1736 9c02f1a2 j_mayer
        idx = 1;
1737 9c02f1a2 j_mayer
        goto update_tx_ptr;
1738 9c02f1a2 j_mayer
    case MAL0_TXCTP2R:
1739 9c02f1a2 j_mayer
        idx = 2;
1740 9c02f1a2 j_mayer
        goto update_tx_ptr;
1741 9c02f1a2 j_mayer
    case MAL0_TXCTP3R:
1742 9c02f1a2 j_mayer
        idx = 3;
1743 9c02f1a2 j_mayer
    update_tx_ptr:
1744 9c02f1a2 j_mayer
        mal->txctpr[idx] = val;
1745 9c02f1a2 j_mayer
        break;
1746 9c02f1a2 j_mayer
    case MAL0_RXCTP0R:
1747 9c02f1a2 j_mayer
        idx = 0;
1748 9c02f1a2 j_mayer
        goto update_rx_ptr;
1749 9c02f1a2 j_mayer
    case MAL0_RXCTP1R:
1750 9c02f1a2 j_mayer
        idx = 1;
1751 9c02f1a2 j_mayer
    update_rx_ptr:
1752 9c02f1a2 j_mayer
        mal->rxctpr[idx] = val;
1753 9c02f1a2 j_mayer
        break;
1754 9c02f1a2 j_mayer
    case MAL0_RCBS0:
1755 9c02f1a2 j_mayer
        idx = 0;
1756 9c02f1a2 j_mayer
        goto update_rx_size;
1757 9c02f1a2 j_mayer
    case MAL0_RCBS1:
1758 9c02f1a2 j_mayer
        idx = 1;
1759 9c02f1a2 j_mayer
    update_rx_size:
1760 9c02f1a2 j_mayer
        mal->rcbs[idx] = val & 0x000000FF;
1761 9c02f1a2 j_mayer
        break;
1762 9c02f1a2 j_mayer
    }
1763 9c02f1a2 j_mayer
}
1764 9c02f1a2 j_mayer
1765 9c02f1a2 j_mayer
static void ppc40x_mal_reset (void *opaque)
1766 9c02f1a2 j_mayer
{
1767 9c02f1a2 j_mayer
    ppc40x_mal_t *mal;
1768 9c02f1a2 j_mayer
1769 9c02f1a2 j_mayer
    mal = opaque;
1770 9c02f1a2 j_mayer
    mal->cfg = 0x0007C000;
1771 9c02f1a2 j_mayer
    mal->esr = 0x00000000;
1772 9c02f1a2 j_mayer
    mal->ier = 0x00000000;
1773 9c02f1a2 j_mayer
    mal->rxcasr = 0x00000000;
1774 9c02f1a2 j_mayer
    mal->rxdeir = 0x00000000;
1775 9c02f1a2 j_mayer
    mal->rxeobisr = 0x00000000;
1776 9c02f1a2 j_mayer
    mal->txcasr = 0x00000000;
1777 9c02f1a2 j_mayer
    mal->txdeir = 0x00000000;
1778 9c02f1a2 j_mayer
    mal->txeobisr = 0x00000000;
1779 9c02f1a2 j_mayer
}
1780 9c02f1a2 j_mayer
1781 9c02f1a2 j_mayer
void ppc405_mal_init (CPUState *env, qemu_irq irqs[4])
1782 9c02f1a2 j_mayer
{
1783 9c02f1a2 j_mayer
    ppc40x_mal_t *mal;
1784 9c02f1a2 j_mayer
    int i;
1785 9c02f1a2 j_mayer
1786 9c02f1a2 j_mayer
    mal = qemu_mallocz(sizeof(ppc40x_mal_t));
1787 487414f1 aliguori
    for (i = 0; i < 4; i++)
1788 487414f1 aliguori
        mal->irqs[i] = irqs[i];
1789 487414f1 aliguori
    ppc40x_mal_reset(mal);
1790 8217606e Jan Kiszka
    qemu_register_reset(&ppc40x_mal_reset, 0, mal);
1791 487414f1 aliguori
    ppc_dcr_register(env, MAL0_CFG,
1792 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1793 487414f1 aliguori
    ppc_dcr_register(env, MAL0_ESR,
1794 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1795 487414f1 aliguori
    ppc_dcr_register(env, MAL0_IER,
1796 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1797 487414f1 aliguori
    ppc_dcr_register(env, MAL0_TXCASR,
1798 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1799 487414f1 aliguori
    ppc_dcr_register(env, MAL0_TXCARR,
1800 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1801 487414f1 aliguori
    ppc_dcr_register(env, MAL0_TXEOBISR,
1802 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1803 487414f1 aliguori
    ppc_dcr_register(env, MAL0_TXDEIR,
1804 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1805 487414f1 aliguori
    ppc_dcr_register(env, MAL0_RXCASR,
1806 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1807 487414f1 aliguori
    ppc_dcr_register(env, MAL0_RXCARR,
1808 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1809 487414f1 aliguori
    ppc_dcr_register(env, MAL0_RXEOBISR,
1810 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1811 487414f1 aliguori
    ppc_dcr_register(env, MAL0_RXDEIR,
1812 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1813 487414f1 aliguori
    ppc_dcr_register(env, MAL0_TXCTP0R,
1814 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1815 487414f1 aliguori
    ppc_dcr_register(env, MAL0_TXCTP1R,
1816 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1817 487414f1 aliguori
    ppc_dcr_register(env, MAL0_TXCTP2R,
1818 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1819 487414f1 aliguori
    ppc_dcr_register(env, MAL0_TXCTP3R,
1820 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1821 487414f1 aliguori
    ppc_dcr_register(env, MAL0_RXCTP0R,
1822 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1823 487414f1 aliguori
    ppc_dcr_register(env, MAL0_RXCTP1R,
1824 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1825 487414f1 aliguori
    ppc_dcr_register(env, MAL0_RCBS0,
1826 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1827 487414f1 aliguori
    ppc_dcr_register(env, MAL0_RCBS1,
1828 487414f1 aliguori
                     mal, &dcr_read_mal, &dcr_write_mal);
1829 9c02f1a2 j_mayer
}
1830 9c02f1a2 j_mayer
1831 9c02f1a2 j_mayer
/*****************************************************************************/
1832 8ecc7913 j_mayer
/* SPR */
1833 8ecc7913 j_mayer
void ppc40x_core_reset (CPUState *env)
1834 8ecc7913 j_mayer
{
1835 8ecc7913 j_mayer
    target_ulong dbsr;
1836 8ecc7913 j_mayer
1837 8ecc7913 j_mayer
    printf("Reset PowerPC core\n");
1838 ef397e88 j_mayer
    env->interrupt_request |= CPU_INTERRUPT_EXITTB;
1839 ef397e88 j_mayer
    /* XXX: TOFIX */
1840 ef397e88 j_mayer
#if 0
1841 8ecc7913 j_mayer
    cpu_ppc_reset(env);
1842 ef397e88 j_mayer
#else
1843 ef397e88 j_mayer
    qemu_system_reset_request();
1844 ef397e88 j_mayer
#endif
1845 8ecc7913 j_mayer
    dbsr = env->spr[SPR_40x_DBSR];
1846 8ecc7913 j_mayer
    dbsr &= ~0x00000300;
1847 8ecc7913 j_mayer
    dbsr |= 0x00000100;
1848 8ecc7913 j_mayer
    env->spr[SPR_40x_DBSR] = dbsr;
1849 8ecc7913 j_mayer
}
1850 8ecc7913 j_mayer
1851 8ecc7913 j_mayer
void ppc40x_chip_reset (CPUState *env)
1852 8ecc7913 j_mayer
{
1853 8ecc7913 j_mayer
    target_ulong dbsr;
1854 8ecc7913 j_mayer
1855 8ecc7913 j_mayer
    printf("Reset PowerPC chip\n");
1856 ef397e88 j_mayer
    env->interrupt_request |= CPU_INTERRUPT_EXITTB;
1857 ef397e88 j_mayer
    /* XXX: TOFIX */
1858 ef397e88 j_mayer
#if 0
1859 8ecc7913 j_mayer
    cpu_ppc_reset(env);
1860 ef397e88 j_mayer
#else
1861 ef397e88 j_mayer
    qemu_system_reset_request();
1862 ef397e88 j_mayer
#endif
1863 8ecc7913 j_mayer
    /* XXX: TODO reset all internal peripherals */
1864 8ecc7913 j_mayer
    dbsr = env->spr[SPR_40x_DBSR];
1865 8ecc7913 j_mayer
    dbsr &= ~0x00000300;
1866 04f20795 j_mayer
    dbsr |= 0x00000200;
1867 8ecc7913 j_mayer
    env->spr[SPR_40x_DBSR] = dbsr;
1868 8ecc7913 j_mayer
}
1869 8ecc7913 j_mayer
1870 8ecc7913 j_mayer
void ppc40x_system_reset (CPUState *env)
1871 8ecc7913 j_mayer
{
1872 8ecc7913 j_mayer
    printf("Reset PowerPC system\n");
1873 8ecc7913 j_mayer
    qemu_system_reset_request();
1874 8ecc7913 j_mayer
}
1875 8ecc7913 j_mayer
1876 8ecc7913 j_mayer
void store_40x_dbcr0 (CPUState *env, uint32_t val)
1877 8ecc7913 j_mayer
{
1878 8ecc7913 j_mayer
    switch ((val >> 28) & 0x3) {
1879 8ecc7913 j_mayer
    case 0x0:
1880 8ecc7913 j_mayer
        /* No action */
1881 8ecc7913 j_mayer
        break;
1882 8ecc7913 j_mayer
    case 0x1:
1883 8ecc7913 j_mayer
        /* Core reset */
1884 8ecc7913 j_mayer
        ppc40x_core_reset(env);
1885 8ecc7913 j_mayer
        break;
1886 8ecc7913 j_mayer
    case 0x2:
1887 8ecc7913 j_mayer
        /* Chip reset */
1888 8ecc7913 j_mayer
        ppc40x_chip_reset(env);
1889 8ecc7913 j_mayer
        break;
1890 8ecc7913 j_mayer
    case 0x3:
1891 8ecc7913 j_mayer
        /* System reset */
1892 8ecc7913 j_mayer
        ppc40x_system_reset(env);
1893 8ecc7913 j_mayer
        break;
1894 8ecc7913 j_mayer
    }
1895 8ecc7913 j_mayer
}
1896 8ecc7913 j_mayer
1897 8ecc7913 j_mayer
/*****************************************************************************/
1898 8ecc7913 j_mayer
/* PowerPC 405CR */
1899 8ecc7913 j_mayer
enum {
1900 8ecc7913 j_mayer
    PPC405CR_CPC0_PLLMR  = 0x0B0,
1901 8ecc7913 j_mayer
    PPC405CR_CPC0_CR0    = 0x0B1,
1902 8ecc7913 j_mayer
    PPC405CR_CPC0_CR1    = 0x0B2,
1903 8ecc7913 j_mayer
    PPC405CR_CPC0_PSR    = 0x0B4,
1904 8ecc7913 j_mayer
    PPC405CR_CPC0_JTAGID = 0x0B5,
1905 8ecc7913 j_mayer
    PPC405CR_CPC0_ER     = 0x0B9,
1906 8ecc7913 j_mayer
    PPC405CR_CPC0_FR     = 0x0BA,
1907 8ecc7913 j_mayer
    PPC405CR_CPC0_SR     = 0x0BB,
1908 8ecc7913 j_mayer
};
1909 8ecc7913 j_mayer
1910 04f20795 j_mayer
enum {
1911 04f20795 j_mayer
    PPC405CR_CPU_CLK   = 0,
1912 04f20795 j_mayer
    PPC405CR_TMR_CLK   = 1,
1913 04f20795 j_mayer
    PPC405CR_PLB_CLK   = 2,
1914 04f20795 j_mayer
    PPC405CR_SDRAM_CLK = 3,
1915 04f20795 j_mayer
    PPC405CR_OPB_CLK   = 4,
1916 04f20795 j_mayer
    PPC405CR_EXT_CLK   = 5,
1917 04f20795 j_mayer
    PPC405CR_UART_CLK  = 6,
1918 04f20795 j_mayer
    PPC405CR_CLK_NB    = 7,
1919 04f20795 j_mayer
};
1920 04f20795 j_mayer
1921 8ecc7913 j_mayer
typedef struct ppc405cr_cpc_t ppc405cr_cpc_t;
1922 8ecc7913 j_mayer
struct ppc405cr_cpc_t {
1923 04f20795 j_mayer
    clk_setup_t clk_setup[PPC405CR_CLK_NB];
1924 8ecc7913 j_mayer
    uint32_t sysclk;
1925 8ecc7913 j_mayer
    uint32_t psr;
1926 8ecc7913 j_mayer
    uint32_t cr0;
1927 8ecc7913 j_mayer
    uint32_t cr1;
1928 8ecc7913 j_mayer
    uint32_t jtagid;
1929 8ecc7913 j_mayer
    uint32_t pllmr;
1930 8ecc7913 j_mayer
    uint32_t er;
1931 8ecc7913 j_mayer
    uint32_t fr;
1932 8ecc7913 j_mayer
};
1933 8ecc7913 j_mayer
1934 8ecc7913 j_mayer
static void ppc405cr_clk_setup (ppc405cr_cpc_t *cpc)
1935 8ecc7913 j_mayer
{
1936 8ecc7913 j_mayer
    uint64_t VCO_out, PLL_out;
1937 8ecc7913 j_mayer
    uint32_t CPU_clk, TMR_clk, SDRAM_clk, PLB_clk, OPB_clk, EXT_clk, UART_clk;
1938 8ecc7913 j_mayer
    int M, D0, D1, D2;
1939 8ecc7913 j_mayer
1940 8ecc7913 j_mayer
    D0 = ((cpc->pllmr >> 26) & 0x3) + 1; /* CBDV */
1941 8ecc7913 j_mayer
    if (cpc->pllmr & 0x80000000) {
1942 8ecc7913 j_mayer
        D1 = (((cpc->pllmr >> 20) - 1) & 0xF) + 1; /* FBDV */
1943 8ecc7913 j_mayer
        D2 = 8 - ((cpc->pllmr >> 16) & 0x7); /* FWDVA */
1944 8ecc7913 j_mayer
        M = D0 * D1 * D2;
1945 8ecc7913 j_mayer
        VCO_out = cpc->sysclk * M;
1946 8ecc7913 j_mayer
        if (VCO_out < 400000000 || VCO_out > 800000000) {
1947 8ecc7913 j_mayer
            /* PLL cannot lock */
1948 8ecc7913 j_mayer
            cpc->pllmr &= ~0x80000000;
1949 8ecc7913 j_mayer
            goto bypass_pll;
1950 8ecc7913 j_mayer
        }
1951 8ecc7913 j_mayer
        PLL_out = VCO_out / D2;
1952 8ecc7913 j_mayer
    } else {
1953 8ecc7913 j_mayer
        /* Bypass PLL */
1954 8ecc7913 j_mayer
    bypass_pll:
1955 8ecc7913 j_mayer
        M = D0;
1956 8ecc7913 j_mayer
        PLL_out = cpc->sysclk * M;
1957 8ecc7913 j_mayer
    }
1958 8ecc7913 j_mayer
    CPU_clk = PLL_out;
1959 8ecc7913 j_mayer
    if (cpc->cr1 & 0x00800000)
1960 8ecc7913 j_mayer
        TMR_clk = cpc->sysclk; /* Should have a separate clock */
1961 8ecc7913 j_mayer
    else
1962 8ecc7913 j_mayer
        TMR_clk = CPU_clk;
1963 8ecc7913 j_mayer
    PLB_clk = CPU_clk / D0;
1964 8ecc7913 j_mayer
    SDRAM_clk = PLB_clk;
1965 8ecc7913 j_mayer
    D0 = ((cpc->pllmr >> 10) & 0x3) + 1;
1966 8ecc7913 j_mayer
    OPB_clk = PLB_clk / D0;
1967 8ecc7913 j_mayer
    D0 = ((cpc->pllmr >> 24) & 0x3) + 2;
1968 8ecc7913 j_mayer
    EXT_clk = PLB_clk / D0;
1969 8ecc7913 j_mayer
    D0 = ((cpc->cr0 >> 1) & 0x1F) + 1;
1970 8ecc7913 j_mayer
    UART_clk = CPU_clk / D0;
1971 8ecc7913 j_mayer
    /* Setup CPU clocks */
1972 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405CR_CPU_CLK], CPU_clk);
1973 8ecc7913 j_mayer
    /* Setup time-base clock */
1974 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405CR_TMR_CLK], TMR_clk);
1975 8ecc7913 j_mayer
    /* Setup PLB clock */
1976 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405CR_PLB_CLK], PLB_clk);
1977 8ecc7913 j_mayer
    /* Setup SDRAM clock */
1978 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405CR_SDRAM_CLK], SDRAM_clk);
1979 8ecc7913 j_mayer
    /* Setup OPB clock */
1980 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405CR_OPB_CLK], OPB_clk);
1981 8ecc7913 j_mayer
    /* Setup external clock */
1982 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405CR_EXT_CLK], EXT_clk);
1983 8ecc7913 j_mayer
    /* Setup UART clock */
1984 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405CR_UART_CLK], UART_clk);
1985 8ecc7913 j_mayer
}
1986 8ecc7913 j_mayer
1987 8ecc7913 j_mayer
static target_ulong dcr_read_crcpc (void *opaque, int dcrn)
1988 8ecc7913 j_mayer
{
1989 8ecc7913 j_mayer
    ppc405cr_cpc_t *cpc;
1990 8ecc7913 j_mayer
    target_ulong ret;
1991 8ecc7913 j_mayer
1992 8ecc7913 j_mayer
    cpc = opaque;
1993 8ecc7913 j_mayer
    switch (dcrn) {
1994 8ecc7913 j_mayer
    case PPC405CR_CPC0_PLLMR:
1995 8ecc7913 j_mayer
        ret = cpc->pllmr;
1996 8ecc7913 j_mayer
        break;
1997 8ecc7913 j_mayer
    case PPC405CR_CPC0_CR0:
1998 8ecc7913 j_mayer
        ret = cpc->cr0;
1999 8ecc7913 j_mayer
        break;
2000 8ecc7913 j_mayer
    case PPC405CR_CPC0_CR1:
2001 8ecc7913 j_mayer
        ret = cpc->cr1;
2002 8ecc7913 j_mayer
        break;
2003 8ecc7913 j_mayer
    case PPC405CR_CPC0_PSR:
2004 8ecc7913 j_mayer
        ret = cpc->psr;
2005 8ecc7913 j_mayer
        break;
2006 8ecc7913 j_mayer
    case PPC405CR_CPC0_JTAGID:
2007 8ecc7913 j_mayer
        ret = cpc->jtagid;
2008 8ecc7913 j_mayer
        break;
2009 8ecc7913 j_mayer
    case PPC405CR_CPC0_ER:
2010 8ecc7913 j_mayer
        ret = cpc->er;
2011 8ecc7913 j_mayer
        break;
2012 8ecc7913 j_mayer
    case PPC405CR_CPC0_FR:
2013 8ecc7913 j_mayer
        ret = cpc->fr;
2014 8ecc7913 j_mayer
        break;
2015 8ecc7913 j_mayer
    case PPC405CR_CPC0_SR:
2016 8ecc7913 j_mayer
        ret = ~(cpc->er | cpc->fr) & 0xFFFF0000;
2017 8ecc7913 j_mayer
        break;
2018 8ecc7913 j_mayer
    default:
2019 8ecc7913 j_mayer
        /* Avoid gcc warning */
2020 8ecc7913 j_mayer
        ret = 0;
2021 8ecc7913 j_mayer
        break;
2022 8ecc7913 j_mayer
    }
2023 8ecc7913 j_mayer
2024 8ecc7913 j_mayer
    return ret;
2025 8ecc7913 j_mayer
}
2026 8ecc7913 j_mayer
2027 8ecc7913 j_mayer
static void dcr_write_crcpc (void *opaque, int dcrn, target_ulong val)
2028 8ecc7913 j_mayer
{
2029 8ecc7913 j_mayer
    ppc405cr_cpc_t *cpc;
2030 8ecc7913 j_mayer
2031 8ecc7913 j_mayer
    cpc = opaque;
2032 8ecc7913 j_mayer
    switch (dcrn) {
2033 8ecc7913 j_mayer
    case PPC405CR_CPC0_PLLMR:
2034 8ecc7913 j_mayer
        cpc->pllmr = val & 0xFFF77C3F;
2035 8ecc7913 j_mayer
        break;
2036 8ecc7913 j_mayer
    case PPC405CR_CPC0_CR0:
2037 8ecc7913 j_mayer
        cpc->cr0 = val & 0x0FFFFFFE;
2038 8ecc7913 j_mayer
        break;
2039 8ecc7913 j_mayer
    case PPC405CR_CPC0_CR1:
2040 8ecc7913 j_mayer
        cpc->cr1 = val & 0x00800000;
2041 8ecc7913 j_mayer
        break;
2042 8ecc7913 j_mayer
    case PPC405CR_CPC0_PSR:
2043 8ecc7913 j_mayer
        /* Read-only */
2044 8ecc7913 j_mayer
        break;
2045 8ecc7913 j_mayer
    case PPC405CR_CPC0_JTAGID:
2046 8ecc7913 j_mayer
        /* Read-only */
2047 8ecc7913 j_mayer
        break;
2048 8ecc7913 j_mayer
    case PPC405CR_CPC0_ER:
2049 8ecc7913 j_mayer
        cpc->er = val & 0xBFFC0000;
2050 8ecc7913 j_mayer
        break;
2051 8ecc7913 j_mayer
    case PPC405CR_CPC0_FR:
2052 8ecc7913 j_mayer
        cpc->fr = val & 0xBFFC0000;
2053 8ecc7913 j_mayer
        break;
2054 8ecc7913 j_mayer
    case PPC405CR_CPC0_SR:
2055 8ecc7913 j_mayer
        /* Read-only */
2056 8ecc7913 j_mayer
        break;
2057 8ecc7913 j_mayer
    }
2058 8ecc7913 j_mayer
}
2059 8ecc7913 j_mayer
2060 8ecc7913 j_mayer
static void ppc405cr_cpc_reset (void *opaque)
2061 8ecc7913 j_mayer
{
2062 8ecc7913 j_mayer
    ppc405cr_cpc_t *cpc;
2063 8ecc7913 j_mayer
    int D;
2064 8ecc7913 j_mayer
2065 8ecc7913 j_mayer
    cpc = opaque;
2066 8ecc7913 j_mayer
    /* Compute PLLMR value from PSR settings */
2067 8ecc7913 j_mayer
    cpc->pllmr = 0x80000000;
2068 8ecc7913 j_mayer
    /* PFWD */
2069 8ecc7913 j_mayer
    switch ((cpc->psr >> 30) & 3) {
2070 8ecc7913 j_mayer
    case 0:
2071 8ecc7913 j_mayer
        /* Bypass */
2072 8ecc7913 j_mayer
        cpc->pllmr &= ~0x80000000;
2073 8ecc7913 j_mayer
        break;
2074 8ecc7913 j_mayer
    case 1:
2075 8ecc7913 j_mayer
        /* Divide by 3 */
2076 8ecc7913 j_mayer
        cpc->pllmr |= 5 << 16;
2077 8ecc7913 j_mayer
        break;
2078 8ecc7913 j_mayer
    case 2:
2079 8ecc7913 j_mayer
        /* Divide by 4 */
2080 8ecc7913 j_mayer
        cpc->pllmr |= 4 << 16;
2081 8ecc7913 j_mayer
        break;
2082 8ecc7913 j_mayer
    case 3:
2083 8ecc7913 j_mayer
        /* Divide by 6 */
2084 8ecc7913 j_mayer
        cpc->pllmr |= 2 << 16;
2085 8ecc7913 j_mayer
        break;
2086 8ecc7913 j_mayer
    }
2087 8ecc7913 j_mayer
    /* PFBD */
2088 8ecc7913 j_mayer
    D = (cpc->psr >> 28) & 3;
2089 8ecc7913 j_mayer
    cpc->pllmr |= (D + 1) << 20;
2090 8ecc7913 j_mayer
    /* PT   */
2091 8ecc7913 j_mayer
    D = (cpc->psr >> 25) & 7;
2092 8ecc7913 j_mayer
    switch (D) {
2093 8ecc7913 j_mayer
    case 0x2:
2094 8ecc7913 j_mayer
        cpc->pllmr |= 0x13;
2095 8ecc7913 j_mayer
        break;
2096 8ecc7913 j_mayer
    case 0x4:
2097 8ecc7913 j_mayer
        cpc->pllmr |= 0x15;
2098 8ecc7913 j_mayer
        break;
2099 8ecc7913 j_mayer
    case 0x5:
2100 8ecc7913 j_mayer
        cpc->pllmr |= 0x16;
2101 8ecc7913 j_mayer
        break;
2102 8ecc7913 j_mayer
    default:
2103 8ecc7913 j_mayer
        break;
2104 8ecc7913 j_mayer
    }
2105 8ecc7913 j_mayer
    /* PDC  */
2106 8ecc7913 j_mayer
    D = (cpc->psr >> 23) & 3;
2107 8ecc7913 j_mayer
    cpc->pllmr |= D << 26;
2108 8ecc7913 j_mayer
    /* ODP  */
2109 8ecc7913 j_mayer
    D = (cpc->psr >> 21) & 3;
2110 8ecc7913 j_mayer
    cpc->pllmr |= D << 10;
2111 8ecc7913 j_mayer
    /* EBPD */
2112 8ecc7913 j_mayer
    D = (cpc->psr >> 17) & 3;
2113 8ecc7913 j_mayer
    cpc->pllmr |= D << 24;
2114 8ecc7913 j_mayer
    cpc->cr0 = 0x0000003C;
2115 8ecc7913 j_mayer
    cpc->cr1 = 0x2B0D8800;
2116 8ecc7913 j_mayer
    cpc->er = 0x00000000;
2117 8ecc7913 j_mayer
    cpc->fr = 0x00000000;
2118 8ecc7913 j_mayer
    ppc405cr_clk_setup(cpc);
2119 8ecc7913 j_mayer
}
2120 8ecc7913 j_mayer
2121 8ecc7913 j_mayer
static void ppc405cr_clk_init (ppc405cr_cpc_t *cpc)
2122 8ecc7913 j_mayer
{
2123 8ecc7913 j_mayer
    int D;
2124 8ecc7913 j_mayer
2125 8ecc7913 j_mayer
    /* XXX: this should be read from IO pins */
2126 8ecc7913 j_mayer
    cpc->psr = 0x00000000; /* 8 bits ROM */
2127 8ecc7913 j_mayer
    /* PFWD */
2128 8ecc7913 j_mayer
    D = 0x2; /* Divide by 4 */
2129 8ecc7913 j_mayer
    cpc->psr |= D << 30;
2130 8ecc7913 j_mayer
    /* PFBD */
2131 8ecc7913 j_mayer
    D = 0x1; /* Divide by 2 */
2132 8ecc7913 j_mayer
    cpc->psr |= D << 28;
2133 8ecc7913 j_mayer
    /* PDC */
2134 8ecc7913 j_mayer
    D = 0x1; /* Divide by 2 */
2135 8ecc7913 j_mayer
    cpc->psr |= D << 23;
2136 8ecc7913 j_mayer
    /* PT */
2137 8ecc7913 j_mayer
    D = 0x5; /* M = 16 */
2138 8ecc7913 j_mayer
    cpc->psr |= D << 25;
2139 8ecc7913 j_mayer
    /* ODP */
2140 8ecc7913 j_mayer
    D = 0x1; /* Divide by 2 */
2141 8ecc7913 j_mayer
    cpc->psr |= D << 21;
2142 8ecc7913 j_mayer
    /* EBDP */
2143 8ecc7913 j_mayer
    D = 0x2; /* Divide by 4 */
2144 8ecc7913 j_mayer
    cpc->psr |= D << 17;
2145 8ecc7913 j_mayer
}
2146 8ecc7913 j_mayer
2147 8ecc7913 j_mayer
static void ppc405cr_cpc_init (CPUState *env, clk_setup_t clk_setup[7],
2148 8ecc7913 j_mayer
                               uint32_t sysclk)
2149 8ecc7913 j_mayer
{
2150 8ecc7913 j_mayer
    ppc405cr_cpc_t *cpc;
2151 8ecc7913 j_mayer
2152 8ecc7913 j_mayer
    cpc = qemu_mallocz(sizeof(ppc405cr_cpc_t));
2153 487414f1 aliguori
    memcpy(cpc->clk_setup, clk_setup,
2154 487414f1 aliguori
           PPC405CR_CLK_NB * sizeof(clk_setup_t));
2155 487414f1 aliguori
    cpc->sysclk = sysclk;
2156 487414f1 aliguori
    cpc->jtagid = 0x42051049;
2157 487414f1 aliguori
    ppc_dcr_register(env, PPC405CR_CPC0_PSR, cpc,
2158 487414f1 aliguori
                     &dcr_read_crcpc, &dcr_write_crcpc);
2159 487414f1 aliguori
    ppc_dcr_register(env, PPC405CR_CPC0_CR0, cpc,
2160 487414f1 aliguori
                     &dcr_read_crcpc, &dcr_write_crcpc);
2161 487414f1 aliguori
    ppc_dcr_register(env, PPC405CR_CPC0_CR1, cpc,
2162 487414f1 aliguori
                     &dcr_read_crcpc, &dcr_write_crcpc);
2163 487414f1 aliguori
    ppc_dcr_register(env, PPC405CR_CPC0_JTAGID, cpc,
2164 487414f1 aliguori
                     &dcr_read_crcpc, &dcr_write_crcpc);
2165 487414f1 aliguori
    ppc_dcr_register(env, PPC405CR_CPC0_PLLMR, cpc,
2166 487414f1 aliguori
                     &dcr_read_crcpc, &dcr_write_crcpc);
2167 487414f1 aliguori
    ppc_dcr_register(env, PPC405CR_CPC0_ER, cpc,
2168 487414f1 aliguori
                     &dcr_read_crcpc, &dcr_write_crcpc);
2169 487414f1 aliguori
    ppc_dcr_register(env, PPC405CR_CPC0_FR, cpc,
2170 487414f1 aliguori
                     &dcr_read_crcpc, &dcr_write_crcpc);
2171 487414f1 aliguori
    ppc_dcr_register(env, PPC405CR_CPC0_SR, cpc,
2172 487414f1 aliguori
                     &dcr_read_crcpc, &dcr_write_crcpc);
2173 487414f1 aliguori
    ppc405cr_clk_init(cpc);
2174 8217606e Jan Kiszka
    qemu_register_reset(ppc405cr_cpc_reset, 0, cpc);
2175 487414f1 aliguori
    ppc405cr_cpc_reset(cpc);
2176 8ecc7913 j_mayer
}
2177 8ecc7913 j_mayer
2178 71db710f blueswir1
CPUState *ppc405cr_init (target_phys_addr_t ram_bases[4],
2179 71db710f blueswir1
                         target_phys_addr_t ram_sizes[4],
2180 8ecc7913 j_mayer
                         uint32_t sysclk, qemu_irq **picp,
2181 5c130f65 pbrook
                         int do_init)
2182 8ecc7913 j_mayer
{
2183 04f20795 j_mayer
    clk_setup_t clk_setup[PPC405CR_CLK_NB];
2184 8ecc7913 j_mayer
    qemu_irq dma_irqs[4];
2185 8ecc7913 j_mayer
    CPUState *env;
2186 8ecc7913 j_mayer
    ppc4xx_mmio_t *mmio;
2187 8ecc7913 j_mayer
    qemu_irq *pic, *irqs;
2188 8ecc7913 j_mayer
2189 8ecc7913 j_mayer
    memset(clk_setup, 0, sizeof(clk_setup));
2190 008ff9d7 j_mayer
    env = ppc4xx_init("405cr", &clk_setup[PPC405CR_CPU_CLK],
2191 04f20795 j_mayer
                      &clk_setup[PPC405CR_TMR_CLK], sysclk);
2192 8ecc7913 j_mayer
    /* Memory mapped devices registers */
2193 8ecc7913 j_mayer
    mmio = ppc4xx_mmio_init(env, 0xEF600000);
2194 8ecc7913 j_mayer
    /* PLB arbitrer */
2195 8ecc7913 j_mayer
    ppc4xx_plb_init(env);
2196 8ecc7913 j_mayer
    /* PLB to OPB bridge */
2197 8ecc7913 j_mayer
    ppc4xx_pob_init(env);
2198 8ecc7913 j_mayer
    /* OBP arbitrer */
2199 8ecc7913 j_mayer
    ppc4xx_opba_init(env, mmio, 0x600);
2200 8ecc7913 j_mayer
    /* Universal interrupt controller */
2201 8ecc7913 j_mayer
    irqs = qemu_mallocz(sizeof(qemu_irq) * PPCUIC_OUTPUT_NB);
2202 8ecc7913 j_mayer
    irqs[PPCUIC_OUTPUT_INT] =
2203 b48d7d69 j_mayer
        ((qemu_irq *)env->irq_inputs)[PPC40x_INPUT_INT];
2204 8ecc7913 j_mayer
    irqs[PPCUIC_OUTPUT_CINT] =
2205 b48d7d69 j_mayer
        ((qemu_irq *)env->irq_inputs)[PPC40x_INPUT_CINT];
2206 8ecc7913 j_mayer
    pic = ppcuic_init(env, irqs, 0x0C0, 0, 1);
2207 8ecc7913 j_mayer
    *picp = pic;
2208 8ecc7913 j_mayer
    /* SDRAM controller */
2209 80e8bd2b aurel32
    ppc4xx_sdram_init(env, pic[14], 1, ram_bases, ram_sizes, do_init);
2210 8ecc7913 j_mayer
    /* External bus controller */
2211 8ecc7913 j_mayer
    ppc405_ebc_init(env);
2212 8ecc7913 j_mayer
    /* DMA controller */
2213 04f20795 j_mayer
    dma_irqs[0] = pic[26];
2214 04f20795 j_mayer
    dma_irqs[1] = pic[25];
2215 04f20795 j_mayer
    dma_irqs[2] = pic[24];
2216 04f20795 j_mayer
    dma_irqs[3] = pic[23];
2217 8ecc7913 j_mayer
    ppc405_dma_init(env, dma_irqs);
2218 8ecc7913 j_mayer
    /* Serial ports */
2219 8ecc7913 j_mayer
    if (serial_hds[0] != NULL) {
2220 923e5e33 aurel32
        ppc405_serial_init(env, mmio, 0x300, pic[0], serial_hds[0]);
2221 8ecc7913 j_mayer
    }
2222 8ecc7913 j_mayer
    if (serial_hds[1] != NULL) {
2223 923e5e33 aurel32
        ppc405_serial_init(env, mmio, 0x400, pic[1], serial_hds[1]);
2224 8ecc7913 j_mayer
    }
2225 8ecc7913 j_mayer
    /* IIC controller */
2226 923e5e33 aurel32
    ppc405_i2c_init(env, mmio, 0x500, pic[2]);
2227 8ecc7913 j_mayer
    /* GPIO */
2228 8ecc7913 j_mayer
    ppc405_gpio_init(env, mmio, 0x700);
2229 8ecc7913 j_mayer
    /* CPU control */
2230 8ecc7913 j_mayer
    ppc405cr_cpc_init(env, clk_setup, sysclk);
2231 8ecc7913 j_mayer
2232 8ecc7913 j_mayer
    return env;
2233 8ecc7913 j_mayer
}
2234 8ecc7913 j_mayer
2235 8ecc7913 j_mayer
/*****************************************************************************/
2236 8ecc7913 j_mayer
/* PowerPC 405EP */
2237 8ecc7913 j_mayer
/* CPU control */
2238 8ecc7913 j_mayer
enum {
2239 8ecc7913 j_mayer
    PPC405EP_CPC0_PLLMR0 = 0x0F0,
2240 8ecc7913 j_mayer
    PPC405EP_CPC0_BOOT   = 0x0F1,
2241 8ecc7913 j_mayer
    PPC405EP_CPC0_EPCTL  = 0x0F3,
2242 8ecc7913 j_mayer
    PPC405EP_CPC0_PLLMR1 = 0x0F4,
2243 8ecc7913 j_mayer
    PPC405EP_CPC0_UCR    = 0x0F5,
2244 8ecc7913 j_mayer
    PPC405EP_CPC0_SRR    = 0x0F6,
2245 8ecc7913 j_mayer
    PPC405EP_CPC0_JTAGID = 0x0F7,
2246 8ecc7913 j_mayer
    PPC405EP_CPC0_PCI    = 0x0F9,
2247 9c02f1a2 j_mayer
#if 0
2248 9c02f1a2 j_mayer
    PPC405EP_CPC0_ER     = xxx,
2249 9c02f1a2 j_mayer
    PPC405EP_CPC0_FR     = xxx,
2250 9c02f1a2 j_mayer
    PPC405EP_CPC0_SR     = xxx,
2251 9c02f1a2 j_mayer
#endif
2252 8ecc7913 j_mayer
};
2253 8ecc7913 j_mayer
2254 04f20795 j_mayer
enum {
2255 04f20795 j_mayer
    PPC405EP_CPU_CLK   = 0,
2256 04f20795 j_mayer
    PPC405EP_PLB_CLK   = 1,
2257 04f20795 j_mayer
    PPC405EP_OPB_CLK   = 2,
2258 04f20795 j_mayer
    PPC405EP_EBC_CLK   = 3,
2259 04f20795 j_mayer
    PPC405EP_MAL_CLK   = 4,
2260 04f20795 j_mayer
    PPC405EP_PCI_CLK   = 5,
2261 04f20795 j_mayer
    PPC405EP_UART0_CLK = 6,
2262 04f20795 j_mayer
    PPC405EP_UART1_CLK = 7,
2263 04f20795 j_mayer
    PPC405EP_CLK_NB    = 8,
2264 04f20795 j_mayer
};
2265 04f20795 j_mayer
2266 8ecc7913 j_mayer
typedef struct ppc405ep_cpc_t ppc405ep_cpc_t;
2267 8ecc7913 j_mayer
struct ppc405ep_cpc_t {
2268 8ecc7913 j_mayer
    uint32_t sysclk;
2269 04f20795 j_mayer
    clk_setup_t clk_setup[PPC405EP_CLK_NB];
2270 8ecc7913 j_mayer
    uint32_t boot;
2271 8ecc7913 j_mayer
    uint32_t epctl;
2272 8ecc7913 j_mayer
    uint32_t pllmr[2];
2273 8ecc7913 j_mayer
    uint32_t ucr;
2274 8ecc7913 j_mayer
    uint32_t srr;
2275 8ecc7913 j_mayer
    uint32_t jtagid;
2276 8ecc7913 j_mayer
    uint32_t pci;
2277 9c02f1a2 j_mayer
    /* Clock and power management */
2278 9c02f1a2 j_mayer
    uint32_t er;
2279 9c02f1a2 j_mayer
    uint32_t fr;
2280 9c02f1a2 j_mayer
    uint32_t sr;
2281 8ecc7913 j_mayer
};
2282 8ecc7913 j_mayer
2283 8ecc7913 j_mayer
static void ppc405ep_compute_clocks (ppc405ep_cpc_t *cpc)
2284 8ecc7913 j_mayer
{
2285 8ecc7913 j_mayer
    uint32_t CPU_clk, PLB_clk, OPB_clk, EBC_clk, MAL_clk, PCI_clk;
2286 8ecc7913 j_mayer
    uint32_t UART0_clk, UART1_clk;
2287 8ecc7913 j_mayer
    uint64_t VCO_out, PLL_out;
2288 8ecc7913 j_mayer
    int M, D;
2289 8ecc7913 j_mayer
2290 8ecc7913 j_mayer
    VCO_out = 0;
2291 8ecc7913 j_mayer
    if ((cpc->pllmr[1] & 0x80000000) && !(cpc->pllmr[1] & 0x40000000)) {
2292 8ecc7913 j_mayer
        M = (((cpc->pllmr[1] >> 20) - 1) & 0xF) + 1; /* FBMUL */
2293 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2294 aae9366a j_mayer
        printf("FBMUL %01" PRIx32 " %d\n", (cpc->pllmr[1] >> 20) & 0xF, M);
2295 aae9366a j_mayer
#endif
2296 8ecc7913 j_mayer
        D = 8 - ((cpc->pllmr[1] >> 16) & 0x7); /* FWDA */
2297 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2298 aae9366a j_mayer
        printf("FWDA %01" PRIx32 " %d\n", (cpc->pllmr[1] >> 16) & 0x7, D);
2299 aae9366a j_mayer
#endif
2300 8ecc7913 j_mayer
        VCO_out = cpc->sysclk * M * D;
2301 8ecc7913 j_mayer
        if (VCO_out < 500000000UL || VCO_out > 1000000000UL) {
2302 8ecc7913 j_mayer
            /* Error - unlock the PLL */
2303 8ecc7913 j_mayer
            printf("VCO out of range %" PRIu64 "\n", VCO_out);
2304 8ecc7913 j_mayer
#if 0
2305 8ecc7913 j_mayer
            cpc->pllmr[1] &= ~0x80000000;
2306 8ecc7913 j_mayer
            goto pll_bypass;
2307 8ecc7913 j_mayer
#endif
2308 8ecc7913 j_mayer
        }
2309 8ecc7913 j_mayer
        PLL_out = VCO_out / D;
2310 9c02f1a2 j_mayer
        /* Pretend the PLL is locked */
2311 9c02f1a2 j_mayer
        cpc->boot |= 0x00000001;
2312 8ecc7913 j_mayer
    } else {
2313 8ecc7913 j_mayer
#if 0
2314 8ecc7913 j_mayer
    pll_bypass:
2315 8ecc7913 j_mayer
#endif
2316 8ecc7913 j_mayer
        PLL_out = cpc->sysclk;
2317 9c02f1a2 j_mayer
        if (cpc->pllmr[1] & 0x40000000) {
2318 9c02f1a2 j_mayer
            /* Pretend the PLL is not locked */
2319 9c02f1a2 j_mayer
            cpc->boot &= ~0x00000001;
2320 9c02f1a2 j_mayer
        }
2321 8ecc7913 j_mayer
    }
2322 8ecc7913 j_mayer
    /* Now, compute all other clocks */
2323 8ecc7913 j_mayer
    D = ((cpc->pllmr[0] >> 20) & 0x3) + 1; /* CCDV */
2324 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2325 aae9366a j_mayer
    printf("CCDV %01" PRIx32 " %d\n", (cpc->pllmr[0] >> 20) & 0x3, D);
2326 8ecc7913 j_mayer
#endif
2327 8ecc7913 j_mayer
    CPU_clk = PLL_out / D;
2328 8ecc7913 j_mayer
    D = ((cpc->pllmr[0] >> 16) & 0x3) + 1; /* CBDV */
2329 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2330 aae9366a j_mayer
    printf("CBDV %01" PRIx32 " %d\n", (cpc->pllmr[0] >> 16) & 0x3, D);
2331 8ecc7913 j_mayer
#endif
2332 8ecc7913 j_mayer
    PLB_clk = CPU_clk / D;
2333 8ecc7913 j_mayer
    D = ((cpc->pllmr[0] >> 12) & 0x3) + 1; /* OPDV */
2334 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2335 aae9366a j_mayer
    printf("OPDV %01" PRIx32 " %d\n", (cpc->pllmr[0] >> 12) & 0x3, D);
2336 8ecc7913 j_mayer
#endif
2337 8ecc7913 j_mayer
    OPB_clk = PLB_clk / D;
2338 8ecc7913 j_mayer
    D = ((cpc->pllmr[0] >> 8) & 0x3) + 2; /* EPDV */
2339 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2340 aae9366a j_mayer
    printf("EPDV %01" PRIx32 " %d\n", (cpc->pllmr[0] >> 8) & 0x3, D);
2341 8ecc7913 j_mayer
#endif
2342 8ecc7913 j_mayer
    EBC_clk = PLB_clk / D;
2343 8ecc7913 j_mayer
    D = ((cpc->pllmr[0] >> 4) & 0x3) + 1; /* MPDV */
2344 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2345 aae9366a j_mayer
    printf("MPDV %01" PRIx32 " %d\n", (cpc->pllmr[0] >> 4) & 0x3, D);
2346 8ecc7913 j_mayer
#endif
2347 8ecc7913 j_mayer
    MAL_clk = PLB_clk / D;
2348 8ecc7913 j_mayer
    D = (cpc->pllmr[0] & 0x3) + 1; /* PPDV */
2349 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2350 aae9366a j_mayer
    printf("PPDV %01" PRIx32 " %d\n", cpc->pllmr[0] & 0x3, D);
2351 8ecc7913 j_mayer
#endif
2352 8ecc7913 j_mayer
    PCI_clk = PLB_clk / D;
2353 8ecc7913 j_mayer
    D = ((cpc->ucr - 1) & 0x7F) + 1; /* U0DIV */
2354 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2355 aae9366a j_mayer
    printf("U0DIV %01" PRIx32 " %d\n", cpc->ucr & 0x7F, D);
2356 8ecc7913 j_mayer
#endif
2357 8ecc7913 j_mayer
    UART0_clk = PLL_out / D;
2358 8ecc7913 j_mayer
    D = (((cpc->ucr >> 8) - 1) & 0x7F) + 1; /* U1DIV */
2359 aae9366a j_mayer
#ifdef DEBUG_CLOCKS_LL
2360 aae9366a j_mayer
    printf("U1DIV %01" PRIx32 " %d\n", (cpc->ucr >> 8) & 0x7F, D);
2361 8ecc7913 j_mayer
#endif
2362 8ecc7913 j_mayer
    UART1_clk = PLL_out / D;
2363 8ecc7913 j_mayer
#ifdef DEBUG_CLOCKS
2364 aae9366a j_mayer
    printf("Setup PPC405EP clocks - sysclk %" PRIu32 " VCO %" PRIu64
2365 8ecc7913 j_mayer
           " PLL out %" PRIu64 " Hz\n", cpc->sysclk, VCO_out, PLL_out);
2366 aae9366a j_mayer
    printf("CPU %" PRIu32 " PLB %" PRIu32 " OPB %" PRIu32 " EBC %" PRIu32
2367 aae9366a j_mayer
           " MAL %" PRIu32 " PCI %" PRIu32 " UART0 %" PRIu32
2368 aae9366a j_mayer
           " UART1 %" PRIu32 "\n",
2369 8ecc7913 j_mayer
           CPU_clk, PLB_clk, OPB_clk, EBC_clk, MAL_clk, PCI_clk,
2370 8ecc7913 j_mayer
           UART0_clk, UART1_clk);
2371 8ecc7913 j_mayer
#endif
2372 8ecc7913 j_mayer
    /* Setup CPU clocks */
2373 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405EP_CPU_CLK], CPU_clk);
2374 8ecc7913 j_mayer
    /* Setup PLB clock */
2375 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405EP_PLB_CLK], PLB_clk);
2376 8ecc7913 j_mayer
    /* Setup OPB clock */
2377 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405EP_OPB_CLK], OPB_clk);
2378 8ecc7913 j_mayer
    /* Setup external clock */
2379 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405EP_EBC_CLK], EBC_clk);
2380 8ecc7913 j_mayer
    /* Setup MAL clock */
2381 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405EP_MAL_CLK], MAL_clk);
2382 8ecc7913 j_mayer
    /* Setup PCI clock */
2383 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405EP_PCI_CLK], PCI_clk);
2384 8ecc7913 j_mayer
    /* Setup UART0 clock */
2385 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405EP_UART0_CLK], UART0_clk);
2386 8ecc7913 j_mayer
    /* Setup UART1 clock */
2387 04f20795 j_mayer
    clk_setup(&cpc->clk_setup[PPC405EP_UART1_CLK], UART1_clk);
2388 8ecc7913 j_mayer
}
2389 8ecc7913 j_mayer
2390 8ecc7913 j_mayer
static target_ulong dcr_read_epcpc (void *opaque, int dcrn)
2391 8ecc7913 j_mayer
{
2392 8ecc7913 j_mayer
    ppc405ep_cpc_t *cpc;
2393 8ecc7913 j_mayer
    target_ulong ret;
2394 8ecc7913 j_mayer
2395 8ecc7913 j_mayer
    cpc = opaque;
2396 8ecc7913 j_mayer
    switch (dcrn) {
2397 8ecc7913 j_mayer
    case PPC405EP_CPC0_BOOT:
2398 8ecc7913 j_mayer
        ret = cpc->boot;
2399 8ecc7913 j_mayer
        break;
2400 8ecc7913 j_mayer
    case PPC405EP_CPC0_EPCTL:
2401 8ecc7913 j_mayer
        ret = cpc->epctl;
2402 8ecc7913 j_mayer
        break;
2403 8ecc7913 j_mayer
    case PPC405EP_CPC0_PLLMR0:
2404 8ecc7913 j_mayer
        ret = cpc->pllmr[0];
2405 8ecc7913 j_mayer
        break;
2406 8ecc7913 j_mayer
    case PPC405EP_CPC0_PLLMR1:
2407 8ecc7913 j_mayer
        ret = cpc->pllmr[1];
2408 8ecc7913 j_mayer
        break;
2409 8ecc7913 j_mayer
    case PPC405EP_CPC0_UCR:
2410 8ecc7913 j_mayer
        ret = cpc->ucr;
2411 8ecc7913 j_mayer
        break;
2412 8ecc7913 j_mayer
    case PPC405EP_CPC0_SRR:
2413 8ecc7913 j_mayer
        ret = cpc->srr;
2414 8ecc7913 j_mayer
        break;
2415 8ecc7913 j_mayer
    case PPC405EP_CPC0_JTAGID:
2416 8ecc7913 j_mayer
        ret = cpc->jtagid;
2417 8ecc7913 j_mayer
        break;
2418 8ecc7913 j_mayer
    case PPC405EP_CPC0_PCI:
2419 8ecc7913 j_mayer
        ret = cpc->pci;
2420 8ecc7913 j_mayer
        break;
2421 8ecc7913 j_mayer
    default:
2422 8ecc7913 j_mayer
        /* Avoid gcc warning */
2423 8ecc7913 j_mayer
        ret = 0;
2424 8ecc7913 j_mayer
        break;
2425 8ecc7913 j_mayer
    }
2426 8ecc7913 j_mayer
2427 8ecc7913 j_mayer
    return ret;
2428 8ecc7913 j_mayer
}
2429 8ecc7913 j_mayer
2430 8ecc7913 j_mayer
static void dcr_write_epcpc (void *opaque, int dcrn, target_ulong val)
2431 8ecc7913 j_mayer
{
2432 8ecc7913 j_mayer
    ppc405ep_cpc_t *cpc;
2433 8ecc7913 j_mayer
2434 8ecc7913 j_mayer
    cpc = opaque;
2435 8ecc7913 j_mayer
    switch (dcrn) {
2436 8ecc7913 j_mayer
    case PPC405EP_CPC0_BOOT:
2437 8ecc7913 j_mayer
        /* Read-only register */
2438 8ecc7913 j_mayer
        break;
2439 8ecc7913 j_mayer
    case PPC405EP_CPC0_EPCTL:
2440 8ecc7913 j_mayer
        /* Don't care for now */
2441 8ecc7913 j_mayer
        cpc->epctl = val & 0xC00000F3;
2442 8ecc7913 j_mayer
        break;
2443 8ecc7913 j_mayer
    case PPC405EP_CPC0_PLLMR0:
2444 8ecc7913 j_mayer
        cpc->pllmr[0] = val & 0x00633333;
2445 8ecc7913 j_mayer
        ppc405ep_compute_clocks(cpc);
2446 8ecc7913 j_mayer
        break;
2447 8ecc7913 j_mayer
    case PPC405EP_CPC0_PLLMR1:
2448 8ecc7913 j_mayer
        cpc->pllmr[1] = val & 0xC0F73FFF;
2449 8ecc7913 j_mayer
        ppc405ep_compute_clocks(cpc);
2450 8ecc7913 j_mayer
        break;
2451 8ecc7913 j_mayer
    case PPC405EP_CPC0_UCR:
2452 8ecc7913 j_mayer
        /* UART control - don't care for now */
2453 8ecc7913 j_mayer
        cpc->ucr = val & 0x003F7F7F;
2454 8ecc7913 j_mayer
        break;
2455 8ecc7913 j_mayer
    case PPC405EP_CPC0_SRR:
2456 8ecc7913 j_mayer
        cpc->srr = val;
2457 8ecc7913 j_mayer
        break;
2458 8ecc7913 j_mayer
    case PPC405EP_CPC0_JTAGID:
2459 8ecc7913 j_mayer
        /* Read-only */
2460 8ecc7913 j_mayer
        break;
2461 8ecc7913 j_mayer
    case PPC405EP_CPC0_PCI:
2462 8ecc7913 j_mayer
        cpc->pci = val;
2463 8ecc7913 j_mayer
        break;
2464 8ecc7913 j_mayer
    }
2465 8ecc7913 j_mayer
}
2466 8ecc7913 j_mayer
2467 8ecc7913 j_mayer
static void ppc405ep_cpc_reset (void *opaque)
2468 8ecc7913 j_mayer
{
2469 8ecc7913 j_mayer
    ppc405ep_cpc_t *cpc = opaque;
2470 8ecc7913 j_mayer
2471 8ecc7913 j_mayer
    cpc->boot = 0x00000010;     /* Boot from PCI - IIC EEPROM disabled */
2472 8ecc7913 j_mayer
    cpc->epctl = 0x00000000;
2473 8ecc7913 j_mayer
    cpc->pllmr[0] = 0x00011010;
2474 8ecc7913 j_mayer
    cpc->pllmr[1] = 0x40000000;
2475 8ecc7913 j_mayer
    cpc->ucr = 0x00000000;
2476 8ecc7913 j_mayer
    cpc->srr = 0x00040000;
2477 8ecc7913 j_mayer
    cpc->pci = 0x00000000;
2478 9c02f1a2 j_mayer
    cpc->er = 0x00000000;
2479 9c02f1a2 j_mayer
    cpc->fr = 0x00000000;
2480 9c02f1a2 j_mayer
    cpc->sr = 0x00000000;
2481 8ecc7913 j_mayer
    ppc405ep_compute_clocks(cpc);
2482 8ecc7913 j_mayer
}
2483 8ecc7913 j_mayer
2484 8ecc7913 j_mayer
/* XXX: sysclk should be between 25 and 100 MHz */
2485 8ecc7913 j_mayer
static void ppc405ep_cpc_init (CPUState *env, clk_setup_t clk_setup[8],
2486 8ecc7913 j_mayer
                               uint32_t sysclk)
2487 8ecc7913 j_mayer
{
2488 8ecc7913 j_mayer
    ppc405ep_cpc_t *cpc;
2489 8ecc7913 j_mayer
2490 8ecc7913 j_mayer
    cpc = qemu_mallocz(sizeof(ppc405ep_cpc_t));
2491 487414f1 aliguori
    memcpy(cpc->clk_setup, clk_setup,
2492 487414f1 aliguori
           PPC405EP_CLK_NB * sizeof(clk_setup_t));
2493 487414f1 aliguori
    cpc->jtagid = 0x20267049;
2494 487414f1 aliguori
    cpc->sysclk = sysclk;
2495 487414f1 aliguori
    ppc405ep_cpc_reset(cpc);
2496 8217606e Jan Kiszka
    qemu_register_reset(&ppc405ep_cpc_reset, 0, cpc);
2497 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_BOOT, cpc,
2498 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2499 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_EPCTL, cpc,
2500 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2501 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_PLLMR0, cpc,
2502 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2503 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_PLLMR1, cpc,
2504 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2505 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_UCR, cpc,
2506 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2507 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_SRR, cpc,
2508 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2509 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_JTAGID, cpc,
2510 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2511 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_PCI, cpc,
2512 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2513 9c02f1a2 j_mayer
#if 0
2514 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_ER, cpc,
2515 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2516 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_FR, cpc,
2517 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2518 487414f1 aliguori
    ppc_dcr_register(env, PPC405EP_CPC0_SR, cpc,
2519 487414f1 aliguori
                     &dcr_read_epcpc, &dcr_write_epcpc);
2520 9c02f1a2 j_mayer
#endif
2521 8ecc7913 j_mayer
}
2522 8ecc7913 j_mayer
2523 71db710f blueswir1
CPUState *ppc405ep_init (target_phys_addr_t ram_bases[2],
2524 71db710f blueswir1
                         target_phys_addr_t ram_sizes[2],
2525 8ecc7913 j_mayer
                         uint32_t sysclk, qemu_irq **picp,
2526 5c130f65 pbrook
                         int do_init)
2527 8ecc7913 j_mayer
{
2528 9c02f1a2 j_mayer
    clk_setup_t clk_setup[PPC405EP_CLK_NB], tlb_clk_setup;
2529 9c02f1a2 j_mayer
    qemu_irq dma_irqs[4], gpt_irqs[5], mal_irqs[4];
2530 8ecc7913 j_mayer
    CPUState *env;
2531 8ecc7913 j_mayer
    ppc4xx_mmio_t *mmio;
2532 8ecc7913 j_mayer
    qemu_irq *pic, *irqs;
2533 8ecc7913 j_mayer
2534 8ecc7913 j_mayer
    memset(clk_setup, 0, sizeof(clk_setup));
2535 8ecc7913 j_mayer
    /* init CPUs */
2536 008ff9d7 j_mayer
    env = ppc4xx_init("405ep", &clk_setup[PPC405EP_CPU_CLK],
2537 9c02f1a2 j_mayer
                      &tlb_clk_setup, sysclk);
2538 9c02f1a2 j_mayer
    clk_setup[PPC405EP_CPU_CLK].cb = tlb_clk_setup.cb;
2539 9c02f1a2 j_mayer
    clk_setup[PPC405EP_CPU_CLK].opaque = tlb_clk_setup.opaque;
2540 8ecc7913 j_mayer
    /* Internal devices init */
2541 8ecc7913 j_mayer
    /* Memory mapped devices registers */
2542 8ecc7913 j_mayer
    mmio = ppc4xx_mmio_init(env, 0xEF600000);
2543 8ecc7913 j_mayer
    /* PLB arbitrer */
2544 8ecc7913 j_mayer
    ppc4xx_plb_init(env);
2545 8ecc7913 j_mayer
    /* PLB to OPB bridge */
2546 8ecc7913 j_mayer
    ppc4xx_pob_init(env);
2547 8ecc7913 j_mayer
    /* OBP arbitrer */
2548 8ecc7913 j_mayer
    ppc4xx_opba_init(env, mmio, 0x600);
2549 8ecc7913 j_mayer
    /* Universal interrupt controller */
2550 8ecc7913 j_mayer
    irqs = qemu_mallocz(sizeof(qemu_irq) * PPCUIC_OUTPUT_NB);
2551 8ecc7913 j_mayer
    irqs[PPCUIC_OUTPUT_INT] =
2552 b48d7d69 j_mayer
        ((qemu_irq *)env->irq_inputs)[PPC40x_INPUT_INT];
2553 8ecc7913 j_mayer
    irqs[PPCUIC_OUTPUT_CINT] =
2554 b48d7d69 j_mayer
        ((qemu_irq *)env->irq_inputs)[PPC40x_INPUT_CINT];
2555 8ecc7913 j_mayer
    pic = ppcuic_init(env, irqs, 0x0C0, 0, 1);
2556 8ecc7913 j_mayer
    *picp = pic;
2557 8ecc7913 j_mayer
    /* SDRAM controller */
2558 923e5e33 aurel32
        /* XXX 405EP has no ECC interrupt */
2559 80e8bd2b aurel32
    ppc4xx_sdram_init(env, pic[17], 2, ram_bases, ram_sizes, do_init);
2560 8ecc7913 j_mayer
    /* External bus controller */
2561 8ecc7913 j_mayer
    ppc405_ebc_init(env);
2562 8ecc7913 j_mayer
    /* DMA controller */
2563 923e5e33 aurel32
    dma_irqs[0] = pic[5];
2564 923e5e33 aurel32
    dma_irqs[1] = pic[6];
2565 923e5e33 aurel32
    dma_irqs[2] = pic[7];
2566 923e5e33 aurel32
    dma_irqs[3] = pic[8];
2567 8ecc7913 j_mayer
    ppc405_dma_init(env, dma_irqs);
2568 8ecc7913 j_mayer
    /* IIC controller */
2569 923e5e33 aurel32
    ppc405_i2c_init(env, mmio, 0x500, pic[2]);
2570 8ecc7913 j_mayer
    /* GPIO */
2571 8ecc7913 j_mayer
    ppc405_gpio_init(env, mmio, 0x700);
2572 8ecc7913 j_mayer
    /* Serial ports */
2573 8ecc7913 j_mayer
    if (serial_hds[0] != NULL) {
2574 923e5e33 aurel32
        ppc405_serial_init(env, mmio, 0x300, pic[0], serial_hds[0]);
2575 8ecc7913 j_mayer
    }
2576 8ecc7913 j_mayer
    if (serial_hds[1] != NULL) {
2577 923e5e33 aurel32
        ppc405_serial_init(env, mmio, 0x400, pic[1], serial_hds[1]);
2578 8ecc7913 j_mayer
    }
2579 8ecc7913 j_mayer
    /* OCM */
2580 5c130f65 pbrook
    ppc405_ocm_init(env);
2581 9c02f1a2 j_mayer
    /* GPT */
2582 923e5e33 aurel32
    gpt_irqs[0] = pic[19];
2583 923e5e33 aurel32
    gpt_irqs[1] = pic[20];
2584 923e5e33 aurel32
    gpt_irqs[2] = pic[21];
2585 923e5e33 aurel32
    gpt_irqs[3] = pic[22];
2586 923e5e33 aurel32
    gpt_irqs[4] = pic[23];
2587 9c02f1a2 j_mayer
    ppc4xx_gpt_init(env, mmio, 0x000, gpt_irqs);
2588 8ecc7913 j_mayer
    /* PCI */
2589 923e5e33 aurel32
    /* Uses pic[3], pic[16], pic[18] */
2590 9c02f1a2 j_mayer
    /* MAL */
2591 923e5e33 aurel32
    mal_irqs[0] = pic[11];
2592 923e5e33 aurel32
    mal_irqs[1] = pic[12];
2593 923e5e33 aurel32
    mal_irqs[2] = pic[13];
2594 923e5e33 aurel32
    mal_irqs[3] = pic[14];
2595 9c02f1a2 j_mayer
    ppc405_mal_init(env, mal_irqs);
2596 9c02f1a2 j_mayer
    /* Ethernet */
2597 923e5e33 aurel32
    /* Uses pic[9], pic[15], pic[17] */
2598 8ecc7913 j_mayer
    /* CPU control */
2599 8ecc7913 j_mayer
    ppc405ep_cpc_init(env, clk_setup, sysclk);
2600 8ecc7913 j_mayer
2601 8ecc7913 j_mayer
    return env;
2602 8ecc7913 j_mayer
}