2010-09-17 20:03:43 +04:00
|
|
|
#ifndef _ASM_X86_AMD_NB_H
|
|
|
|
#define _ASM_X86_AMD_NB_H
|
2006-06-26 15:56:40 +04:00
|
|
|
|
2012-01-06 01:27:19 +04:00
|
|
|
#include <linux/ioport.h>
|
2006-06-26 15:56:40 +04:00
|
|
|
#include <linux/pci.h>
|
|
|
|
|
2011-01-10 19:20:23 +03:00
|
|
|
struct amd_nb_bus_dev_range {
|
|
|
|
u8 bus;
|
|
|
|
u8 dev_base;
|
|
|
|
u8 dev_limit;
|
|
|
|
};
|
|
|
|
|
2011-02-09 11:26:53 +03:00
|
|
|
extern const struct pci_device_id amd_nb_misc_ids[];
|
2011-01-10 19:20:23 +03:00
|
|
|
extern const struct amd_nb_bus_dev_range amd_nb_bus_dev_ranges[];
|
2006-06-26 15:56:40 +04:00
|
|
|
|
2011-03-03 14:59:32 +03:00
|
|
|
extern bool early_is_amd_nb(u32 value);
|
2012-01-06 01:27:19 +04:00
|
|
|
extern struct resource *amd_get_mmconfig_range(struct resource *res);
|
2010-10-29 19:14:31 +04:00
|
|
|
extern int amd_cache_northbridges(void);
|
2010-10-29 19:14:30 +04:00
|
|
|
extern void amd_flush_garts(void);
|
2011-02-16 14:13:06 +03:00
|
|
|
extern int amd_numa_init(void);
|
2011-02-07 20:10:39 +03:00
|
|
|
extern int amd_get_subcaches(int);
|
|
|
|
extern int amd_set_subcaches(int, int);
|
2006-06-26 15:56:40 +04:00
|
|
|
|
2011-07-24 13:46:09 +04:00
|
|
|
struct amd_l3_cache {
|
|
|
|
unsigned indices;
|
|
|
|
u8 subcaches[4];
|
|
|
|
};
|
|
|
|
|
2010-10-29 19:14:31 +04:00
|
|
|
struct amd_northbridge {
|
|
|
|
struct pci_dev *misc;
|
2011-01-24 18:05:42 +03:00
|
|
|
struct pci_dev *link;
|
2011-07-24 13:46:09 +04:00
|
|
|
struct amd_l3_cache l3_cache;
|
2010-10-29 19:14:31 +04:00
|
|
|
};
|
|
|
|
|
2010-10-29 19:14:30 +04:00
|
|
|
struct amd_northbridge_info {
|
2010-09-17 20:02:54 +04:00
|
|
|
u16 num;
|
2010-10-29 19:14:31 +04:00
|
|
|
u64 flags;
|
|
|
|
struct amd_northbridge *nb;
|
2010-09-17 20:02:54 +04:00
|
|
|
};
|
2010-10-29 19:14:30 +04:00
|
|
|
extern struct amd_northbridge_info amd_northbridges;
|
2010-09-17 20:02:54 +04:00
|
|
|
|
2011-03-03 14:59:32 +03:00
|
|
|
#define AMD_NB_GART BIT(0)
|
|
|
|
#define AMD_NB_L3_INDEX_DISABLE BIT(1)
|
|
|
|
#define AMD_NB_L3_PARTITIONING BIT(2)
|
2010-10-29 19:14:31 +04:00
|
|
|
|
2010-09-17 20:03:43 +04:00
|
|
|
#ifdef CONFIG_AMD_NB
|
2010-04-24 11:56:53 +04:00
|
|
|
|
2011-03-03 14:59:32 +03:00
|
|
|
static inline u16 amd_nb_num(void)
|
2009-04-14 21:34:37 +04:00
|
|
|
{
|
2010-10-29 19:14:31 +04:00
|
|
|
return amd_northbridges.num;
|
2009-04-14 21:34:37 +04:00
|
|
|
}
|
2010-04-24 11:56:53 +04:00
|
|
|
|
2011-03-03 14:59:32 +03:00
|
|
|
static inline bool amd_nb_has_feature(unsigned feature)
|
2010-10-29 19:14:31 +04:00
|
|
|
{
|
|
|
|
return ((amd_northbridges.flags & feature) == feature);
|
|
|
|
}
|
2010-04-24 11:56:53 +04:00
|
|
|
|
2010-10-29 19:14:31 +04:00
|
|
|
static inline struct amd_northbridge *node_to_amd_nb(int node)
|
2009-04-14 21:34:37 +04:00
|
|
|
{
|
2010-10-29 19:14:31 +04:00
|
|
|
return (node < amd_northbridges.num) ? &amd_northbridges.nb[node] : NULL;
|
2009-04-14 21:34:37 +04:00
|
|
|
}
|
2010-10-29 19:14:31 +04:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define amd_nb_num(x) 0
|
|
|
|
#define amd_nb_has_feature(x) false
|
|
|
|
#define node_to_amd_nb(x) NULL
|
|
|
|
|
2009-04-09 17:16:17 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2010-09-17 20:03:43 +04:00
|
|
|
#endif /* _ASM_X86_AMD_NB_H */
|