]> git.proxmox.com Git - qemu.git/blame - hw/ppc405.h
Merge NBD client/server, by Laurent Vivier.
[qemu.git] / hw / ppc405.h
CommitLineData
04f20795
JM
1/*
2 * QEMU PowerPC 405 shared definitions
5fafdf24 3 *
04f20795 4 * Copyright (c) 2007 Jocelyn Mayer
5fafdf24 5 *
04f20795
JM
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
008ff9d7
JM
28#include "ppc4xx.h"
29
04f20795
JM
30/* Bootinfo as set-up by u-boot */
31typedef struct ppc4xx_bd_info_t ppc4xx_bd_info_t;
32struct ppc4xx_bd_info_t {
33 uint32_t bi_memstart;
34 uint32_t bi_memsize;
35 uint32_t bi_flashstart;
36 uint32_t bi_flashsize;
37 uint32_t bi_flashoffset; /* 0x10 */
38 uint32_t bi_sramstart;
39 uint32_t bi_sramsize;
40 uint32_t bi_bootflags;
41 uint32_t bi_ipaddr; /* 0x20 */
42 uint8_t bi_enetaddr[6];
43 uint16_t bi_ethspeed;
44 uint32_t bi_intfreq;
45 uint32_t bi_busfreq; /* 0x30 */
46 uint32_t bi_baudrate;
47 uint8_t bi_s_version[4];
48 uint8_t bi_r_version[32];
49 uint32_t bi_procfreq;
50 uint32_t bi_plb_busfreq;
51 uint32_t bi_pci_busfreq;
52 uint8_t bi_pci_enetaddr[6];
53 uint32_t bi_pci_enetaddr2[6];
54 uint32_t bi_opbfreq;
55 uint32_t bi_iic_fast[2];
56};
57
58/* PowerPC 405 core */
b8d3f5d1
JM
59ram_addr_t ppc405_set_bootinfo (CPUState *env, ppc4xx_bd_info_t *bd,
60 uint32_t flags);
04f20795 61
04f20795
JM
62/* PowerPC 4xx peripheral local bus arbitrer */
63void ppc4xx_plb_init (CPUState *env);
64/* PLB to OPB bridge */
65void ppc4xx_pob_init (CPUState *env);
66/* OPB arbitrer */
9c02f1a2
JM
67void ppc4xx_opba_init (CPUState *env, ppc4xx_mmio_t *mmio,
68 target_phys_addr_t offset);
04f20795
JM
69/* SDRAM controller */
70void ppc405_sdram_init (CPUState *env, qemu_irq irq, int nbanks,
71db710f
BS
71 target_phys_addr_t *ram_bases,
72 target_phys_addr_t *ram_sizes,
04f20795
JM
73 int do_init);
74/* Peripheral controller */
75void ppc405_ebc_init (CPUState *env);
76/* DMA controller */
77void ppc405_dma_init (CPUState *env, qemu_irq irqs[4]);
78/* GPIO */
9c02f1a2
JM
79void ppc405_gpio_init (CPUState *env, ppc4xx_mmio_t *mmio,
80 target_phys_addr_t offset);
04f20795
JM
81/* Serial ports */
82void ppc405_serial_init (CPUState *env, ppc4xx_mmio_t *mmio,
9c02f1a2 83 target_phys_addr_t offset, qemu_irq irq,
04f20795
JM
84 CharDriverState *chr);
85/* On Chip Memory */
86void ppc405_ocm_init (CPUState *env, unsigned long offset);
87/* I2C controller */
9c02f1a2
JM
88void ppc405_i2c_init (CPUState *env, ppc4xx_mmio_t *mmio,
89 target_phys_addr_t offset, qemu_irq irq);
90/* General purpose timers */
91void ppc4xx_gpt_init (CPUState *env, ppc4xx_mmio_t *mmio,
92 target_phys_addr_t offset, qemu_irq irq[5]);
93/* Memory access layer */
94void ppc405_mal_init (CPUState *env, qemu_irq irqs[4]);
04f20795 95/* PowerPC 405 microcontrollers */
71db710f
BS
96CPUState *ppc405cr_init (target_phys_addr_t ram_bases[4],
97 target_phys_addr_t ram_sizes[4],
04f20795
JM
98 uint32_t sysclk, qemu_irq **picp,
99 ram_addr_t *offsetp, int do_init);
71db710f
BS
100CPUState *ppc405ep_init (target_phys_addr_t ram_bases[2],
101 target_phys_addr_t ram_sizes[2],
04f20795
JM
102 uint32_t sysclk, qemu_irq **picp,
103 ram_addr_t *offsetp, int do_init);
104/* IBM STBxxx microcontrollers */
71db710f
BS
105CPUState *ppc_stb025_init (target_phys_addr_t ram_bases[2],
106 target_phys_addr_t ram_sizes[2],
04f20795
JM
107 uint32_t sysclk, qemu_irq **picp,
108 ram_addr_t *offsetp);
109
110#endif /* !defined(PPC_405_H) */