2003-04-22 21:02:15 +02:00
|
|
|
#ifndef CPU_CPU_H
|
|
|
|
#define CPU_CPU_H
|
|
|
|
|
2004-11-12 22:00:29 +01:00
|
|
|
#include <arch/cpu.h>
|
2003-04-22 21:02:15 +02:00
|
|
|
|
2016-06-20 20:59:19 +02:00
|
|
|
#if !defined(__ROMCC__)
|
2012-06-05 23:41:27 +02:00
|
|
|
void cpu_initialize(unsigned int cpu_index);
|
2012-04-27 00:39:17 +02:00
|
|
|
struct bus;
|
2004-10-16 08:20:29 +02:00
|
|
|
void initialize_cpus(struct bus *cpu_bus);
|
2012-12-06 22:54:29 +01:00
|
|
|
void asmlinkage secondary_cpu_init(unsigned int cpu_index);
|
2016-12-06 13:00:05 +01:00
|
|
|
int cpu_phys_address_size(void);
|
2009-10-30 03:08:07 +01:00
|
|
|
|
2004-10-14 22:15:40 +02:00
|
|
|
#define __cpu_driver __attribute__ ((used,__section__(".rodata.cpu_driver")))
|
2014-01-02 10:08:19 +01:00
|
|
|
#ifndef __SIMPLE_DEVICE__
|
2004-10-14 22:13:01 +02:00
|
|
|
/** start of compile time generated pci driver array */
|
2015-09-04 00:23:08 +02:00
|
|
|
extern struct cpu_driver _cpu_drivers[];
|
2004-10-14 22:13:01 +02:00
|
|
|
/** end of compile time generated pci driver array */
|
2015-09-04 00:23:08 +02:00
|
|
|
extern struct cpu_driver _ecpu_drivers[];
|
2014-01-02 10:08:19 +01:00
|
|
|
#endif
|
2016-06-20 20:59:19 +02:00
|
|
|
#endif /* !__ROMCC__ */
|
2003-04-22 21:02:15 +02:00
|
|
|
|
|
|
|
#endif /* CPU_CPU_H */
|