ppc405.h 3.0 KB
Newer Older
1 2
/*
 * QEMU PowerPC 405 shared definitions
3
 *
4
 * Copyright (c) 2007 Jocelyn Mayer
5
 *
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

#if !defined(PPC_405_H)
#define PPC_405_H

28 29
#include "ppc4xx.h"

30
/* Bootinfo as set-up by u-boot */
A
Anthony Liguori 已提交
31 32
typedef struct ppc4xx_bd_info_t ppc4xx_bd_info_t;
struct ppc4xx_bd_info_t {
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    uint32_t bi_memstart;
    uint32_t bi_memsize;
    uint32_t bi_flashstart;
    uint32_t bi_flashsize;
    uint32_t bi_flashoffset; /* 0x10 */
    uint32_t bi_sramstart;
    uint32_t bi_sramsize;
    uint32_t bi_bootflags;
    uint32_t bi_ipaddr; /* 0x20 */
    uint8_t  bi_enetaddr[6];
    uint16_t bi_ethspeed;
    uint32_t bi_intfreq;
    uint32_t bi_busfreq; /* 0x30 */
    uint32_t bi_baudrate;
    uint8_t  bi_s_version[4];
    uint8_t  bi_r_version[32];
    uint32_t bi_procfreq;
    uint32_t bi_plb_busfreq;
    uint32_t bi_pci_busfreq;
    uint8_t  bi_pci_enetaddr[6];
    uint32_t bi_pci_enetaddr2[6];
    uint32_t bi_opbfreq;
    uint32_t bi_iic_fast[2];
};

/* PowerPC 405 core */
A
Anthony Liguori 已提交
59
ram_addr_t ppc405_set_bootinfo (CPUState *env, ppc4xx_bd_info_t *bd,
60
                                uint32_t flags);
61

A
Avi Kivity 已提交
62 63
CPUState *ppc405cr_init (MemoryRegion ram_memories[4],
                         target_phys_addr_t ram_bases[4],
A
Anthony Liguori 已提交
64
                         target_phys_addr_t ram_sizes[4],
65
                         uint32_t sysclk, qemu_irq **picp,
P
pbrook 已提交
66
                         int do_init);
A
Avi Kivity 已提交
67 68
CPUState *ppc405ep_init (MemoryRegion ram_memories[2],
                         target_phys_addr_t ram_bases[2],
A
Anthony Liguori 已提交
69
                         target_phys_addr_t ram_sizes[2],
70
                         uint32_t sysclk, qemu_irq **picp,
P
pbrook 已提交
71
                         int do_init);
72
/* IBM STBxxx microcontrollers */
A
Avi Kivity 已提交
73 74
CPUState *ppc_stb025_init (MemoryRegion ram_memories[2],
                           target_phys_addr_t ram_bases[2],
A
Anthony Liguori 已提交
75
                           target_phys_addr_t ram_sizes[2],
76
                           uint32_t sysclk, qemu_irq **picp,
A
Anthony Liguori 已提交
77
                           ram_addr_t *offsetp);
78 79

#endif /* !defined(PPC_405_H) */