1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/init.h>
4 #include <linux/topology.h>
6 #include <linux/range.h>
8 #include <asm/amd_nb.h>
9 #include <asm/pci_x86.h>
11 #include <asm/pci-direct.h>
15 #define AMD_NB_F0_NODE_ID 0x60
16 #define AMD_NB_F0_UNIT_ID 0x64
17 #define AMD_NB_F1_CONFIG_MAP_REG 0xe0
20 #define AMD_NB_F1_CONFIG_MAP_RANGES 4
22 struct amd_hostbridge
{
30 * hb_probes[] and early_root_info_init() is in maintenance mode.
31 * It only supports K8, Fam10h, Fam11h, and Fam15h_00h-0fh .
32 * Future processor will rely on information in ACPI.
34 static struct amd_hostbridge hb_probes
[] __initdata
= {
35 { 0, 0x18, 0x1100 }, /* K8 */
36 { 0, 0x18, 0x1200 }, /* Family10h */
37 { 0xff, 0, 0x1200 }, /* Family10h */
38 { 0, 0x18, 0x1300 }, /* Family11h */
39 { 0, 0x18, 0x1600 }, /* Family15h */
42 static struct pci_root_info __init
*find_pci_root_info(int node
, int link
)
44 struct pci_root_info
*info
;
46 /* find the position */
47 list_for_each_entry(info
, &pci_root_infos
, list
)
48 if (info
->node
== node
&& info
->link
== link
)
55 * early_root_info_init()
56 * called before pcibios_scan_root and pci_scan_bus
57 * fills the mp_bus_to_cpumask array based according
58 * to the LDT Bus Number Registers found in the northbridge.
60 static int __init
early_root_info_init(void)
69 struct pci_root_info
*info
;
73 struct range range
[RANGE_NUM
];
77 struct resource fam10h_mmconf_res
, *fam10h_mmconf
;
78 u64 fam10h_mmconf_start
;
79 u64 fam10h_mmconf_end
;
81 if (!early_pci_allowed())
85 for (i
= 0; i
< ARRAY_SIZE(hb_probes
); i
++) {
90 bus
= hb_probes
[i
].bus
;
91 slot
= hb_probes
[i
].slot
;
92 id
= read_pci_config(bus
, slot
, 0, PCI_VENDOR_ID
);
94 device
= (id
>>16) & 0xffff;
96 if (vendor
!= PCI_VENDOR_ID_AMD
&&
97 vendor
!= PCI_VENDOR_ID_HYGON
)
100 if (hb_probes
[i
].device
== device
) {
110 * We should learn topology and routing information from _PXM and
111 * _CRS methods in the ACPI namespace. We extract node numbers
112 * here to work around BIOSes that don't supply _PXM.
114 for (i
= 0; i
< AMD_NB_F1_CONFIG_MAP_RANGES
; i
++) {
117 reg
= read_pci_config(bus
, slot
, 1,
118 AMD_NB_F1_CONFIG_MAP_REG
+ (i
<< 2));
120 /* Check if that register is enabled for bus range */
124 min_bus
= (reg
>> 16) & 0xff;
125 max_bus
= (reg
>> 24) & 0xff;
126 node
= (reg
>> 4) & 0x07;
127 link
= (reg
>> 8) & 0x03;
129 info
= alloc_pci_root_info(min_bus
, max_bus
, node
, link
);
133 * The following code extracts routing information for use on old
134 * systems where Linux doesn't automatically use host bridge _CRS
135 * methods (or when the user specifies "pci=nocrs").
137 * We only do this through Fam11h, because _CRS should be enough on
140 if (boot_cpu_data
.x86
> 0x11)
143 /* get the default node and link for left over res */
144 reg
= read_pci_config(bus
, slot
, 0, AMD_NB_F0_NODE_ID
);
145 def_node
= (reg
>> 8) & 0x07;
146 reg
= read_pci_config(bus
, slot
, 0, AMD_NB_F0_UNIT_ID
);
147 def_link
= (reg
>> 8) & 0x03;
149 memset(range
, 0, sizeof(range
));
150 add_range(range
, RANGE_NUM
, 0, 0, 0xffff + 1);
151 /* io port resource */
152 for (i
= 0; i
< 4; i
++) {
153 reg
= read_pci_config(bus
, slot
, 1, 0xc0 + (i
<< 3));
157 start
= reg
& 0xfff000;
158 reg
= read_pci_config(bus
, slot
, 1, 0xc4 + (i
<< 3));
160 link
= (reg
>> 4) & 0x03;
161 end
= (reg
& 0xfff000) | 0xfff;
163 info
= find_pci_root_info(node
, link
);
165 continue; /* not found */
167 printk(KERN_DEBUG
"node %d link %d: io port [%llx, %llx]\n",
168 node
, link
, start
, end
);
170 /* kernel only handle 16 bit only */
173 update_res(info
, start
, end
, IORESOURCE_IO
, 1);
174 subtract_range(range
, RANGE_NUM
, start
, end
+ 1);
176 /* add left over io port range to def node/link, [0, 0xffff] */
177 /* find the position */
178 info
= find_pci_root_info(def_node
, def_link
);
180 for (i
= 0; i
< RANGE_NUM
; i
++) {
184 update_res(info
, range
[i
].start
, range
[i
].end
- 1,
189 memset(range
, 0, sizeof(range
));
190 /* 0xfd00000000-0xffffffffff for HT */
191 end
= cap_resource((0xfdULL
<<32) - 1);
193 add_range(range
, RANGE_NUM
, 0, 0, end
);
195 /* need to take out [0, TOM) for RAM*/
196 address
= MSR_K8_TOP_MEM1
;
197 rdmsrl(address
, val
);
198 end
= (val
& 0xffffff800000ULL
);
199 printk(KERN_INFO
"TOM: %016llx aka %lldM\n", end
, end
>>20);
200 if (end
< (1ULL<<32))
201 subtract_range(range
, RANGE_NUM
, 0, end
);
204 fam10h_mmconf
= amd_get_mmconfig_range(&fam10h_mmconf_res
);
205 /* need to take out mmconf range */
207 printk(KERN_DEBUG
"Fam 10h mmconf %pR\n", fam10h_mmconf
);
208 fam10h_mmconf_start
= fam10h_mmconf
->start
;
209 fam10h_mmconf_end
= fam10h_mmconf
->end
;
210 subtract_range(range
, RANGE_NUM
, fam10h_mmconf_start
,
211 fam10h_mmconf_end
+ 1);
213 fam10h_mmconf_start
= 0;
214 fam10h_mmconf_end
= 0;
218 for (i
= 0; i
< 8; i
++) {
219 reg
= read_pci_config(bus
, slot
, 1, 0x80 + (i
<< 3));
223 start
= reg
& 0xffffff00; /* 39:16 on 31:8*/
225 reg
= read_pci_config(bus
, slot
, 1, 0x84 + (i
<< 3));
227 link
= (reg
>> 4) & 0x03;
228 end
= (reg
& 0xffffff00);
232 info
= find_pci_root_info(node
, link
);
237 printk(KERN_DEBUG
"node %d link %d: mmio [%llx, %llx]",
238 node
, link
, start
, end
);
240 * some sick allocation would have range overlap with fam10h
241 * mmconf range, so need to update start and end.
243 if (fam10h_mmconf_end
) {
246 if (start
>= fam10h_mmconf_start
&&
247 start
<= fam10h_mmconf_end
) {
248 start
= fam10h_mmconf_end
+ 1;
252 if (end
>= fam10h_mmconf_start
&&
253 end
<= fam10h_mmconf_end
) {
254 end
= fam10h_mmconf_start
- 1;
258 if (start
< fam10h_mmconf_start
&&
259 end
> fam10h_mmconf_end
) {
261 endx
= fam10h_mmconf_start
- 1;
262 update_res(info
, start
, endx
, IORESOURCE_MEM
, 0);
263 subtract_range(range
, RANGE_NUM
, start
,
265 printk(KERN_CONT
" ==> [%llx, %llx]", start
, endx
);
266 start
= fam10h_mmconf_end
+ 1;
271 printk(KERN_CONT
" %s [%llx, %llx]", endx
? "and" : "==>", start
, end
);
273 printk(KERN_CONT
"%s\n", endx
?"":" ==> none");
279 update_res(info
, cap_resource(start
), cap_resource(end
),
281 subtract_range(range
, RANGE_NUM
, start
, end
+ 1);
282 printk(KERN_CONT
"\n");
285 /* need to take out [4G, TOM2) for RAM*/
287 address
= MSR_K8_SYSCFG
;
288 rdmsrl(address
, val
);
289 /* TOP_MEM2 is enabled? */
292 address
= MSR_K8_TOP_MEM2
;
293 rdmsrl(address
, val
);
294 end
= (val
& 0xffffff800000ULL
);
295 printk(KERN_INFO
"TOM2: %016llx aka %lldM\n", end
, end
>>20);
296 subtract_range(range
, RANGE_NUM
, 1ULL<<32, end
);
300 * add left over mmio range to def node/link ?
301 * that is tricky, just record range in from start_min to 4G
303 info
= find_pci_root_info(def_node
, def_link
);
305 for (i
= 0; i
< RANGE_NUM
; i
++) {
309 update_res(info
, cap_resource(range
[i
].start
),
310 cap_resource(range
[i
].end
- 1),
315 list_for_each_entry(info
, &pci_root_infos
, list
) {
317 struct pci_root_res
*root_res
;
319 busnum
= info
->busn
.start
;
320 printk(KERN_DEBUG
"bus: %pR on node %x link %x\n",
321 &info
->busn
, info
->node
, info
->link
);
322 list_for_each_entry(root_res
, &info
->resources
, list
)
323 printk(KERN_DEBUG
"bus: %02x %pR\n",
324 busnum
, &root_res
->res
);
330 #define ENABLE_CF8_EXT_CFG (1ULL << 46)
332 static int amd_bus_cpu_online(unsigned int cpu
)
336 rdmsrl(MSR_AMD64_NB_CFG
, reg
);
337 if (!(reg
& ENABLE_CF8_EXT_CFG
)) {
338 reg
|= ENABLE_CF8_EXT_CFG
;
339 wrmsrl(MSR_AMD64_NB_CFG
, reg
);
344 static void __init
pci_enable_pci_io_ecs(void)
349 for (n
= i
= 0; !n
&& amd_nb_bus_dev_ranges
[i
].dev_limit
; ++i
) {
350 u8 bus
= amd_nb_bus_dev_ranges
[i
].bus
;
351 u8 slot
= amd_nb_bus_dev_ranges
[i
].dev_base
;
352 u8 limit
= amd_nb_bus_dev_ranges
[i
].dev_limit
;
354 for (; slot
< limit
; ++slot
) {
355 u32 val
= read_pci_config(bus
, slot
, 3, 0);
357 if (!early_is_amd_nb(val
))
360 val
= read_pci_config(bus
, slot
, 3, 0x8c);
361 if (!(val
& (ENABLE_CF8_EXT_CFG
>> 32))) {
362 val
|= ENABLE_CF8_EXT_CFG
>> 32;
363 write_pci_config(bus
, slot
, 3, 0x8c, val
);
371 static int __init
pci_io_ecs_init(void)
375 /* assume all cpus from fam10h have IO ECS */
376 if (boot_cpu_data
.x86
< 0x10)
379 /* Try the PCI method first. */
380 if (early_pci_allowed())
381 pci_enable_pci_io_ecs();
383 ret
= cpuhp_setup_state(CPUHP_AP_ONLINE_DYN
, "pci/amd_bus:online",
384 amd_bus_cpu_online
, NULL
);
387 pci_probe
|= PCI_HAS_IO_ECS
;
392 static int __init
amd_postcore_init(void)
394 if (boot_cpu_data
.x86_vendor
!= X86_VENDOR_AMD
&&
395 boot_cpu_data
.x86_vendor
!= X86_VENDOR_HYGON
)
398 early_root_info_init();
404 postcore_initcall(amd_postcore_init
);