blob: 08d8e1576240f390830b4500eac7cb4c1940fc07 [file] [log] [blame]
Yinghai Lu284f9332010-02-10 01:20:12 -08001#ifndef __BUS_NUMA_H
2#define __BUS_NUMA_H
Yinghai Lu99935a72009-10-04 21:54:24 -07003/*
4 * sub bus (transparent) will use entres from 3 to store extra from
Jiri Kosina7b7a7852009-11-17 23:19:53 +01005 * root, so need to make sure we have enough slot there, Should we
Yinghai Lu99935a72009-10-04 21:54:24 -07006 * increase PCI_BUS_NUM_RESOURCES?
7 */
8#define RES_NUM 16
9struct pci_root_info {
10 char name[12];
11 unsigned int res_num;
12 struct resource res[RES_NUM];
13 int bus_min;
14 int bus_max;
15 int node;
16 int link;
17};
18
19/* 4 at this time, it may become to 32 */
20#define PCI_ROOT_NR 4
21extern int pci_root_num;
22extern struct pci_root_info pci_root_info[PCI_ROOT_NR];
Yinghai Lu99935a72009-10-04 21:54:24 -070023
Yinghai Lub74fd232010-02-10 01:20:08 -080024extern void update_res(struct pci_root_info *info, resource_size_t start,
25 resource_size_t end, unsigned long flags, int merge);
Yinghai Lu99935a72009-10-04 21:54:24 -070026#endif