2008-10-23 05:26:29 +00:00
|
|
|
#ifndef _ASM_X86_K8_H
|
|
|
|
#define _ASM_X86_K8_H
|
2006-06-26 11:56:40 +00:00
|
|
|
|
|
|
|
#include <linux/pci.h>
|
|
|
|
|
|
|
|
extern struct pci_device_id k8_nb_ids[];
|
2009-10-28 23:09:55 +00:00
|
|
|
struct bootnode;
|
2006-06-26 11:56:40 +00:00
|
|
|
|
|
|
|
extern int early_is_k8_nb(u32 value);
|
|
|
|
extern struct pci_dev **k8_northbridges;
|
|
|
|
extern int num_k8_northbridges;
|
|
|
|
extern int cache_k8_northbridges(void);
|
|
|
|
extern void k8_flush_garts(void);
|
2009-09-25 22:20:00 +00:00
|
|
|
extern int k8_get_nodes(struct bootnode *nodes);
|
|
|
|
extern int k8_numa_init(unsigned long start_pfn, unsigned long end_pfn);
|
|
|
|
extern int k8_scan_nodes(void);
|
2006-06-26 11:56:40 +00:00
|
|
|
|
2009-04-09 13:16:17 +00:00
|
|
|
#ifdef CONFIG_K8_NB
|
2009-04-14 17:34:37 +00:00
|
|
|
static inline struct pci_dev *node_to_k8_nb_misc(int node)
|
|
|
|
{
|
|
|
|
return (node < num_k8_northbridges) ? k8_northbridges[node] : NULL;
|
|
|
|
}
|
2009-04-09 13:16:17 +00:00
|
|
|
#else
|
2009-04-14 17:34:37 +00:00
|
|
|
static inline struct pci_dev *node_to_k8_nb_misc(int node)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-04-09 13:16:17 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_K8_H */
|