1 // SPDX-License-Identifier: GPL-2.0
3 * setup.c - boot time setup code
6 #include <linux/init.h>
7 #include <linux/export.h>
9 #include <asm/bootinfo.h>
10 #include <asm/reboot.h>
12 #include <linux/ioport.h>
14 #include <asm/mach-rc32434/rb.h>
15 #include <asm/mach-rc32434/pci.h>
17 struct pci_reg __iomem
*pci_reg
;
18 EXPORT_SYMBOL(pci_reg
);
20 static struct resource pci0_res
[] = {
23 .start
= PCI0_BASE_ADDR
,
24 .end
= PCI0_BASE_ADDR
+ sizeof(struct pci_reg
),
25 .flags
= IORESOURCE_MEM
,
29 static void rb_machine_restart(char *command
)
31 /* just jump to the reset vector */
32 writel(0x80000001, IDT434_REG_BASE
+ RST
);
33 ((void (*)(void)) KSEG1ADDR(0x1FC00000u
))();
36 static void rb_machine_halt(void)
42 void __init
plat_mem_setup(void)
46 _machine_restart
= rb_machine_restart
;
47 _machine_halt
= rb_machine_halt
;
48 pm_power_off
= rb_machine_halt
;
50 set_io_port_base(KSEG1
);
52 pci_reg
= ioremap_nocache(pci0_res
[0].start
,
53 pci0_res
[0].end
- pci0_res
[0].start
);
55 printk(KERN_ERR
"Could not remap PCI registers\n");
59 val
= __raw_readl(&pci_reg
->pcic
);
61 __raw_writel(val
, (void *)&pci_reg
->pcic
);
64 /* Enable PCI interrupts in EPLD Mask register */
66 *(epld_mask
+ 1) = 0x0;
71 const char *get_system_type(void)
73 switch (mips_machtype
) {
74 case MACH_MIKROTIK_RB532A
:
75 return "Mikrotik RB532A";
78 return "Mikrotik RB532";