Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.9 30 lines 768 B view raw
1#ifndef __WSP_H 2#define __WSP_H 3 4#include <asm/wsp.h> 5 6/* Devtree compatible strings for major devices */ 7#define PCIE_COMPATIBLE "ibm,wsp-pciex" 8 9extern void wsp_setup_arch(void); 10extern void wsp_setup_irq(void); 11extern int wsp_probe_devices(void); 12extern void wsp_halt(void); 13 14extern void wsp_setup_pci(void); 15extern void scom_init_wsp(void); 16 17extern void a2_setup_smp(void); 18extern int a2_scom_startup_cpu(unsigned int lcpu, int thr_idx, 19 struct device_node *np); 20extern int smp_a2_cpu_bootable(unsigned int nr); 21extern int smp_a2_kick_cpu(int nr); 22 23extern void opb_pic_init(void); 24 25/* chroma specific managment */ 26extern void wsp_h8_restart(char *cmd); 27extern void wsp_h8_power_off(void); 28extern void __init wsp_setup_h8(void); 29 30#endif /* __WSP_H */