1 // SPDX-License-Identifier: GPL-2.0
3 * Architecture specific OF callbacks.
5 #include <linux/bootmem.h>
6 #include <linux/export.h>
8 #include <linux/interrupt.h>
9 #include <linux/list.h>
11 #include <linux/of_fdt.h>
12 #include <linux/of_address.h>
13 #include <linux/of_platform.h>
14 #include <linux/of_irq.h>
15 #include <linux/libfdt.h>
16 #include <linux/slab.h>
17 #include <linux/pci.h>
18 #include <linux/of_pci.h>
19 #include <linux/initrd.h>
21 #include <asm/irqdomain.h>
24 #include <asm/pci_x86.h>
25 #include <asm/setup.h>
26 #include <asm/i8259.h>
28 __initdata u64 initial_dtb;
29 char __initdata cmd_line[COMMAND_LINE_SIZE];
31 int __initdata of_ioapic;
33 void __init early_init_dt_scan_chosen_arch(unsigned long node)
38 void __init early_init_dt_add_memory_arch(u64 base, u64 size)
43 void * __init early_init_dt_alloc_memory_arch(u64 size, u64 align)
45 return __alloc_bootmem(size, align, __pa(MAX_DMA_ADDRESS));
48 void __init add_dtb(u64 data)
50 initial_dtb = data + offsetof(struct setup_data, data);
54 * CE4100 ids. Will be moved to machine_device_initcall() once we have it.
56 static struct of_device_id __initdata ce4100_ids[] = {
57 { .compatible = "intel,ce4100-cp", },
58 { .compatible = "isa", },
59 { .compatible = "pci", },
63 static int __init add_bus_probe(void)
65 if (!of_have_populated_dt())
68 return of_platform_bus_probe(NULL, ce4100_ids, NULL);
70 device_initcall(add_bus_probe);
73 struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus)
75 struct device_node *np;
77 for_each_node_by_type(np, "pci") {
81 prop = of_get_property(np, "bus-range", NULL);
84 bus_min = be32_to_cpup(prop);
85 if (bus->number == bus_min)
91 static int x86_of_pci_irq_enable(struct pci_dev *dev)
97 ret = pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
103 virq = of_irq_parse_and_map_pci(dev, 0, 0);
110 static void x86_of_pci_irq_disable(struct pci_dev *dev)
114 void x86_of_pci_init(void)
116 pcibios_enable_irq = x86_of_pci_irq_enable;
117 pcibios_disable_irq = x86_of_pci_irq_disable;
121 static void __init dtb_setup_hpet(void)
123 #ifdef CONFIG_HPET_TIMER
124 struct device_node *dn;
128 dn = of_find_compatible_node(NULL, NULL, "intel,ce4100-hpet");
131 ret = of_address_to_resource(dn, 0, &r);
136 hpet_address = r.start;
140 static void __init dtb_lapic_setup(void)
142 #ifdef CONFIG_X86_LOCAL_APIC
143 struct device_node *dn;
147 dn = of_find_compatible_node(NULL, NULL, "intel,ce4100-lapic");
151 ret = of_address_to_resource(dn, 0, &r);
155 /* Did the boot loader setup the local APIC ? */
156 if (!boot_cpu_has(X86_FEATURE_APIC)) {
157 if (apic_force_enable(r.start))
160 smp_found_config = 1;
162 register_lapic_address(r.start);
163 generic_processor_info(boot_cpu_physical_apicid,
164 GET_APIC_VERSION(apic_read(APIC_LVR)));
168 #ifdef CONFIG_X86_IO_APIC
169 static unsigned int ioapic_id;
171 struct of_ioapic_type {
177 static struct of_ioapic_type of_ioapic_type[] =
180 .out_type = IRQ_TYPE_EDGE_RISING,
181 .trigger = IOAPIC_EDGE,
185 .out_type = IRQ_TYPE_LEVEL_LOW,
186 .trigger = IOAPIC_LEVEL,
190 .out_type = IRQ_TYPE_LEVEL_HIGH,
191 .trigger = IOAPIC_LEVEL,
195 .out_type = IRQ_TYPE_EDGE_FALLING,
196 .trigger = IOAPIC_EDGE,
201 static int dt_irqdomain_alloc(struct irq_domain *domain, unsigned int virq,
202 unsigned int nr_irqs, void *arg)
204 struct irq_fwspec *fwspec = (struct irq_fwspec *)arg;
205 struct of_ioapic_type *it;
206 struct irq_alloc_info tmp;
209 if (WARN_ON(fwspec->param_count < 2))
212 type_index = fwspec->param[1];
213 if (type_index >= ARRAY_SIZE(of_ioapic_type))
216 it = &of_ioapic_type[type_index];
217 ioapic_set_alloc_attr(&tmp, NUMA_NO_NODE, it->trigger, it->polarity);
218 tmp.ioapic_id = mpc_ioapic_id(mp_irqdomain_ioapic_idx(domain));
219 tmp.ioapic_pin = fwspec->param[0];
221 return mp_irqdomain_alloc(domain, virq, nr_irqs, &tmp);
224 static const struct irq_domain_ops ioapic_irq_domain_ops = {
225 .alloc = dt_irqdomain_alloc,
226 .free = mp_irqdomain_free,
227 .activate = mp_irqdomain_activate,
228 .deactivate = mp_irqdomain_deactivate,
231 static void __init dtb_add_ioapic(struct device_node *dn)
235 struct ioapic_domain_cfg cfg = {
236 .type = IOAPIC_DOMAIN_DYNAMIC,
237 .ops = &ioapic_irq_domain_ops,
241 ret = of_address_to_resource(dn, 0, &r);
243 printk(KERN_ERR "Can't obtain address from device node %pOF.\n", dn);
246 mp_register_ioapic(++ioapic_id, r.start, gsi_top, &cfg);
249 static void __init dtb_ioapic_setup(void)
251 struct device_node *dn;
253 for_each_compatible_node(dn, NULL, "intel,ce4100-ioapic")
260 printk(KERN_ERR "Error: No information about IO-APIC in OF.\n");
263 static void __init dtb_ioapic_setup(void) {}
266 static void __init dtb_apic_setup(void)
272 #ifdef CONFIG_OF_FLATTREE
273 static void __init x86_flattree_get_config(void)
281 map_len = max(PAGE_SIZE - (initial_dtb & ~PAGE_MASK), (u64)128);
283 dt = early_memremap(initial_dtb, map_len);
284 size = fdt_totalsize(dt);
285 if (map_len < size) {
286 early_memunmap(dt, map_len);
287 dt = early_memremap(initial_dtb, size);
291 early_init_dt_verify(dt);
292 unflatten_and_copy_device_tree();
293 early_memunmap(dt, map_len);
296 static inline void x86_flattree_get_config(void) { }
299 void __init x86_dtb_init(void)
301 x86_flattree_get_config();
303 if (!of_have_populated_dt())