]> git.proxmox.com Git - qemu.git/blame - hw/arm-misc.h
Merge remote-tracking branch 'kraxel/usb.37' into staging
[qemu.git] / hw / arm-misc.h
CommitLineData
87ecb68b
PB
1/*
2 * Misc ARM declarations
3 *
4 * Copyright (c) 2006 CodeSourcery.
5 * Written by Paul Brook
6 *
8e31bf38 7 * This code is licensed under the LGPL.
87ecb68b
PB
8 *
9 */
10
11#ifndef ARM_MISC_H
12#define ARM_MISC_H 1
13
7d6f78cf
AK
14#include "memory.h"
15
87ecb68b
PB
16/* The CPU is also modeled as an interrupt controller. */
17#define ARM_PIC_CPU_IRQ 0
18#define ARM_PIC_CPU_FIQ 1
19qemu_irq *arm_pic_init_cpu(CPUState *env);
20
21/* armv7m.c */
7d6f78cf
AK
22qemu_irq *armv7m_init(MemoryRegion *address_space_mem,
23 int flash_size, int sram_size,
87ecb68b
PB
24 const char *kernel_filename, const char *cpu_model);
25
26/* arm_boot.c */
f93eb9ff
AZ
27struct arm_boot_info {
28 int ram_size;
29 const char *kernel_filename;
30 const char *kernel_cmdline;
31 const char *initrd_filename;
c227f099
AL
32 target_phys_addr_t loader_start;
33 target_phys_addr_t smp_loader_start;
078758d0 34 target_phys_addr_t smp_bootreg_addr;
f7c70325 35 target_phys_addr_t smp_priv_base;
f93eb9ff
AZ
36 int nb_cpus;
37 int board_id;
462a8bc6 38 int (*atag_board)(const struct arm_boot_info *info, void *p);
f2d74978
PB
39 /* Used internally by arm_boot.c */
40 int is_linux;
41 target_phys_addr_t initrd_size;
42 target_phys_addr_t entry;
f93eb9ff
AZ
43};
44void arm_load_kernel(CPUState *env, struct arm_boot_info *info);
87ecb68b 45
79383c9c
BS
46/* Multiplication factor to convert from system clock ticks to qemu timer
47 ticks. */
7ee930d0 48extern int system_clock_scale;
87ecb68b
PB
49
50#endif /* !ARM_MISC_H */