// SPDX-License-Identifier: GPL-2.0 /* * setup.c - boot time setup code */ #include <linux/init.h> #include <linux/export.h> #include <asm/bootinfo.h> #include <asm/reboot.h> #include <asm/time.h> #include <linux/ioport.h> #include <asm/mach-rc32434/rb.h> #include <asm/mach-rc32434/pci.h> struct pci_reg __iomem *pci_reg; EXPORT_SYMBOL(pci_reg); static struct resource pci0_res[] = { { .name = "pci_reg0", .start = PCI0_BASE_ADDR, .end = PCI0_BASE_ADDR + sizeof(struct pci_reg), .flags = IORESOURCE_MEM, } };
static void rb_machine_restart(char *command) { /* just jump to the reset vector */ writel(0x80000001, IDT434_REG_BASE + RST); ((void (*)(void)) KSEG1ADDR(0x1FC00000u))(); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 36 | 94.74% | 1 | 50.00% |
Florian Fainelli | 2 | 5.26% | 1 | 50.00% |
Total | 38 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 121 | 100.00% | 1 | 100.00% |
Total | 121 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 27 | 100.00% | 1 | 100.00% |
Total | 27 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 266 | 97.44% | 1 | 25.00% |
Florian Fainelli | 3 | 1.10% | 1 | 25.00% |
Paul Gortmaker | 3 | 1.10% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 0.37% | 1 | 25.00% |
Total | 273 | 100.00% | 4 | 100.00% |