Blame view

arch/mips/rb532/setup.c 1.47 KB
73b4390fb   Ralf Baechle   [MIPS] Routerboar...
1
2
3
4
5
  /*
   * setup.c - boot time setup code
   */
  
  #include <linux/init.h>
cae39d138   Paul Gortmaker   mips: add export....
6
  #include <linux/export.h>
73b4390fb   Ralf Baechle   [MIPS] Routerboar...
7
8
9
10
11
  
  #include <asm/bootinfo.h>
  #include <asm/reboot.h>
  #include <asm/time.h>
  #include <linux/ioport.h>
606a083b1   Florian Fainelli   MIPS: RB532: Clea...
12
  #include <asm/mach-rc32434/rb.h>
73b4390fb   Ralf Baechle   [MIPS] Routerboar...
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  #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 */
606a083b1   Florian Fainelli   MIPS: RB532: Clea...
30
  	writel(0x80000001, IDT434_REG_BASE + RST);
73b4390fb   Ralf Baechle   [MIPS] Routerboar...
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  	((void (*)(void)) KSEG1ADDR(0x1FC00000u))();
  }
  
  static void rb_machine_halt(void)
  {
  	for (;;)
  		continue;
  }
  
  void __init plat_mem_setup(void)
  {
  	u32 val;
  
  	_machine_restart = rb_machine_restart;
  	_machine_halt = rb_machine_halt;
  	pm_power_off = rb_machine_halt;
  
  	set_io_port_base(KSEG1);
  
  	pci_reg = ioremap_nocache(pci0_res[0].start,
  				pci0_res[0].end - pci0_res[0].start);
  	if (!pci_reg) {
  		printk(KERN_ERR "Could not remap PCI registers
  ");
  		return;
  	}
  
  	val = __raw_readl(&pci_reg->pcic);
  	val &= 0xFFFFFF7;
  	__raw_writel(val, (void *)&pci_reg->pcic);
  
  #ifdef CONFIG_PCI
  	/* Enable PCI interrupts in EPLD Mask register */
  	*epld_mask = 0x0;
  	*(epld_mask + 1) = 0x0;
  #endif
  	write_c0_wired(0);
  }
  
  const char *get_system_type(void)
  {
  	switch (mips_machtype) {
  	case MACH_MIKROTIK_RB532A:
  		return "Mikrotik RB532A";
  		break;
  	default:
  		return "Mikrotik RB532";
  		break;
  	}
  }