2007-11-17 20:14:51 +03:00
|
|
|
/*
|
|
|
|
* Misc ARM declarations
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 CodeSourcery.
|
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
2011-06-26 06:21:35 +04:00
|
|
|
* This code is licensed under the LGPL.
|
2007-11-17 20:14:51 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ARM_MISC_H
|
|
|
|
#define ARM_MISC_H 1
|
|
|
|
|
2012-12-17 21:19:49 +04:00
|
|
|
#include "exec/memory.h"
|
2012-10-16 05:57:21 +04:00
|
|
|
#include "hw/irq.h"
|
2011-07-25 15:27:01 +04:00
|
|
|
|
2013-03-18 21:20:07 +04:00
|
|
|
/* The CPU is also modelled as an interrupt controller. */
|
2007-11-17 20:14:51 +03:00
|
|
|
#define ARM_PIC_CPU_IRQ 0
|
|
|
|
#define ARM_PIC_CPU_FIQ 1
|
2012-05-14 06:21:52 +04:00
|
|
|
qemu_irq *arm_pic_init_cpu(ARMCPU *cpu);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
|
|
|
/* armv7m.c */
|
2011-07-25 15:27:01 +04:00
|
|
|
qemu_irq *armv7m_init(MemoryRegion *address_space_mem,
|
|
|
|
int flash_size, int sram_size,
|
2007-11-17 20:14:51 +03:00
|
|
|
const char *kernel_filename, const char *cpu_model);
|
|
|
|
|
|
|
|
/* arm_boot.c */
|
2008-04-15 00:27:51 +04:00
|
|
|
struct arm_boot_info {
|
2012-07-20 16:34:49 +04:00
|
|
|
uint64_t ram_size;
|
2008-04-15 00:27:51 +04:00
|
|
|
const char *kernel_filename;
|
|
|
|
const char *kernel_cmdline;
|
|
|
|
const char *initrd_filename;
|
2012-03-02 15:56:38 +04:00
|
|
|
const char *dtb_filename;
|
2012-10-23 14:30:10 +04:00
|
|
|
hwaddr loader_start;
|
2012-01-26 15:43:48 +04:00
|
|
|
/* multicore boards that use the default secondary core boot functions
|
|
|
|
* need to put the address of the secondary boot code, the boot reg,
|
|
|
|
* and the GIC address in the next 3 values, respectively. boards that
|
|
|
|
* have their own boot functions can use these values as they want.
|
|
|
|
*/
|
2012-10-23 14:30:10 +04:00
|
|
|
hwaddr smp_loader_start;
|
|
|
|
hwaddr smp_bootreg_addr;
|
|
|
|
hwaddr gic_cpu_if_addr;
|
2008-04-15 00:27:51 +04:00
|
|
|
int nb_cpus;
|
|
|
|
int board_id;
|
2011-06-23 19:53:48 +04:00
|
|
|
int (*atag_board)(const struct arm_boot_info *info, void *p);
|
2012-01-26 15:43:48 +04:00
|
|
|
/* multicore boards that use the default secondary core boot functions
|
|
|
|
* can ignore these two function calls. If the default functions won't
|
|
|
|
* work, then write_secondary_boot() should write a suitable blob of
|
2012-05-28 08:11:49 +04:00
|
|
|
* code mimicking the secondary CPU startup process used by the board's
|
2012-01-26 15:43:48 +04:00
|
|
|
* boot loader/boot ROM code, and secondary_cpu_reset_hook() should
|
2012-05-28 08:11:49 +04:00
|
|
|
* perform any necessary CPU reset handling and set the PC for the
|
2012-01-26 15:43:48 +04:00
|
|
|
* secondary CPUs to point at this boot blob.
|
|
|
|
*/
|
2012-05-14 02:08:10 +04:00
|
|
|
void (*write_secondary_boot)(ARMCPU *cpu,
|
2012-01-26 15:43:48 +04:00
|
|
|
const struct arm_boot_info *info);
|
2012-05-14 03:05:40 +04:00
|
|
|
void (*secondary_cpu_reset_hook)(ARMCPU *cpu,
|
2012-01-26 15:43:48 +04:00
|
|
|
const struct arm_boot_info *info);
|
2009-11-11 21:07:53 +03:00
|
|
|
/* Used internally by arm_boot.c */
|
|
|
|
int is_linux;
|
2012-10-26 19:29:38 +04:00
|
|
|
hwaddr initrd_start;
|
2012-10-23 14:30:10 +04:00
|
|
|
hwaddr initrd_size;
|
|
|
|
hwaddr entry;
|
2008-04-15 00:27:51 +04:00
|
|
|
};
|
2012-05-14 04:39:57 +04:00
|
|
|
void arm_load_kernel(ARMCPU *cpu, struct arm_boot_info *info);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2008-08-30 13:51:20 +04:00
|
|
|
/* Multiplication factor to convert from system clock ticks to qemu timer
|
|
|
|
ticks. */
|
2008-09-17 23:04:14 +04:00
|
|
|
extern int system_clock_scale;
|
2007-11-17 20:14:51 +03:00
|
|
|
|
|
|
|
#endif /* !ARM_MISC_H */
|