No functional changes:
[qemu] / hw / ppc405.h
1 /*
2  * QEMU PowerPC 405 shared definitions
3  * 
4  * Copyright (c) 2007 Jocelyn Mayer
5  * 
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24
25 #if !defined(PPC_405_H)
26 #define PPC_405_H
27
28 /* Bootinfo as set-up by u-boot */
29 typedef struct ppc4xx_bd_info_t ppc4xx_bd_info_t;
30 struct ppc4xx_bd_info_t {
31     uint32_t bi_memstart;
32     uint32_t bi_memsize;
33     uint32_t bi_flashstart;
34     uint32_t bi_flashsize;
35     uint32_t bi_flashoffset; /* 0x10 */
36     uint32_t bi_sramstart;
37     uint32_t bi_sramsize;
38     uint32_t bi_bootflags;
39     uint32_t bi_ipaddr; /* 0x20 */
40     uint8_t  bi_enetaddr[6];
41     uint16_t bi_ethspeed;
42     uint32_t bi_intfreq;
43     uint32_t bi_busfreq; /* 0x30 */
44     uint32_t bi_baudrate;
45     uint8_t  bi_s_version[4];
46     uint8_t  bi_r_version[32];
47     uint32_t bi_procfreq;
48     uint32_t bi_plb_busfreq;
49     uint32_t bi_pci_busfreq;
50     uint8_t  bi_pci_enetaddr[6];
51     uint32_t bi_pci_enetaddr2[6];
52     uint32_t bi_opbfreq;
53     uint32_t bi_iic_fast[2];
54 };
55
56 /* PowerPC 405 core */
57 CPUState *ppc405_init (const unsigned char *cpu_model,
58                        clk_setup_t *cpu_clk, clk_setup_t *tb_clk,
59                        uint32_t sysclk);
60 ram_addr_t ppc405_set_bootinfo (CPUState *env, ppc4xx_bd_info_t *bd);
61
62 /* */
63 typedef struct ppc4xx_mmio_t ppc4xx_mmio_t;
64 int ppc4xx_mmio_register (CPUState *env, ppc4xx_mmio_t *mmio,
65                           uint32_t offset, uint32_t len,
66                           CPUReadMemoryFunc **mem_read,
67                           CPUWriteMemoryFunc **mem_write, void *opaque);
68 ppc4xx_mmio_t *ppc4xx_mmio_init (CPUState *env, uint32_t base);
69 /* PowerPC 4xx peripheral local bus arbitrer */
70 void ppc4xx_plb_init (CPUState *env);
71 /* PLB to OPB bridge */
72 void ppc4xx_pob_init (CPUState *env);
73 /* OPB arbitrer */
74 void ppc4xx_opba_init (CPUState *env, ppc4xx_mmio_t *mmio, uint32_t offset);
75 /* PowerPC 4xx universal interrupt controller */
76 enum {
77     PPCUIC_OUTPUT_INT = 0,
78     PPCUIC_OUTPUT_CINT = 1,
79     PPCUIC_OUTPUT_NB,
80 };
81 qemu_irq *ppcuic_init (CPUState *env, qemu_irq *irqs,
82                        uint32_t dcr_base, int has_ssr, int has_vr);
83 /* SDRAM controller */
84 void ppc405_sdram_init (CPUState *env, qemu_irq irq, int nbanks,
85                         target_ulong *ram_bases, target_ulong *ram_sizes,
86                         int do_init);
87 /* Peripheral controller */
88 void ppc405_ebc_init (CPUState *env);
89 /* DMA controller */
90 void ppc405_dma_init (CPUState *env, qemu_irq irqs[4]);
91 /* GPIO */
92 void ppc405_gpio_init (CPUState *env, ppc4xx_mmio_t *mmio, uint32_t offset);
93 /* Serial ports */
94 void ppc405_serial_init (CPUState *env, ppc4xx_mmio_t *mmio,
95                          uint32_t offset, qemu_irq irq,
96                          CharDriverState *chr);
97 /* On Chip Memory */
98 void ppc405_ocm_init (CPUState *env, unsigned long offset);
99 /* I2C controller */
100 void ppc405_i2c_init (CPUState *env, ppc4xx_mmio_t *mmio, uint32_t offset);
101 /* PowerPC 405 microcontrollers */
102 CPUState *ppc405cr_init (target_ulong ram_bases[4], target_ulong ram_sizes[4],
103                          uint32_t sysclk, qemu_irq **picp,
104                          ram_addr_t *offsetp, int do_init);
105 CPUState *ppc405ep_init (target_ulong ram_bases[2], target_ulong ram_sizes[2],
106                          uint32_t sysclk, qemu_irq **picp,
107                          ram_addr_t *offsetp, int do_init);
108 /* IBM STBxxx microcontrollers */
109 CPUState *ppc_stb025_init (target_ulong ram_bases[2],
110                            target_ulong ram_sizes[2],
111                            uint32_t sysclk, qemu_irq **picp,
112                            ram_addr_t *offsetp);
113
114 #endif /* !defined(PPC_405_H) */