b22d1a36443e078c21476ccc7bbe7b59b8f0f18d
[librecmc/librecmc.git] / target / linux / ar7-2.6 / patches / 100-board_support.patch
1 diff -Nru linux-2.6.19.2/arch/mips/Kconfig linux-ar7/arch/mips/Kconfig
2 --- linux-2.6.19.2/arch/mips/Kconfig    2006-12-12 02:32:53.000000000 +0700
3 +++ linux-ar7/arch/mips/Kconfig 2007-01-29 21:52:21.000000000 +0700
4 @@ -12,6 +12,19 @@
5         prompt "System type"
6         default SGI_IP22
7  
8 +config AR7
9 +       bool "Texas Instruments AR7"
10 +       select BOOT_ELF32
11 +       select DMA_NONCOHERENT
12 +       select HW_HAS_PCI
13 +       select IRQ_CPU
14 +       select SWAP_IO_SPACE
15 +       select SYS_HAS_CPU_MIPS32_R1
16 +       select SYS_SUPPORTS_32BIT_KERNEL
17 +       select SYS_SUPPORTS_LITTLE_ENDIAN
18 +       select NEED_MULTIPLE_NODES
19 +       select GENERIC_GPIO
20 +
21  config MIPS_MTX1
22         bool "4G Systems MTX-1 board"
23         select DMA_NONCOHERENT
24 diff -Nru linux-2.6.19.2/arch/mips/Makefile linux-ar7/arch/mips/Makefile
25 --- linux-2.6.19.2/arch/mips/Makefile   2006-12-12 02:32:53.000000000 +0700
26 +++ linux-ar7/arch/mips/Makefile        2007-01-29 21:52:21.000000000 +0700
27 @@ -158,6 +158,13 @@
28  #
29  
30  #
31 +# Texas Instruments AR7
32 +#
33 +core-$(CONFIG_AR7)             += arch/mips/ar7/
34 +cflags-$(CONFIG_AR7)           += -Iinclude/asm-mips/ar7
35 +load-$(CONFIG_AR7)             += 0xffffffff94100000
36 +
37 +#
38  # Acer PICA 61, Mips Magnum 4000 and Olivetti M700.
39  #
40  core-$(CONFIG_MACH_JAZZ)       += arch/mips/jazz/
41 diff -Nru linux-2.6.19.2/arch/mips/kernel/setup.c linux-ar7/arch/mips/kernel/setup.c
42 --- linux-2.6.19.2orig/arch/mips/kernel/setup.c 2006-12-12 02:32:53.000000000 +0700
43 +++ linux-ar7/arch/mips/kernel/setup.c  2007-03-04 22:32:13.000000000 +0700
44 @@ -236,7 +236,7 @@
45   * Initialize the bootmem allocator. It also setup initrd related data
46   * if needed.
47   */
48 -#ifdef CONFIG_SGI_IP27
49 +#ifdef CONFIG_NEED_MULTIPLE_NODES
50  
51  static void __init bootmem_init(void)
52  {
53 @@ -244,7 +244,7 @@
54         finalize_initrd();
55  }
56  
57 -#else  /* !CONFIG_SGI_IP27 */
58 +#else  /* !CONFIG_NEED_MULTIPLE_NODES */
59  
60  static void __init bootmem_init(void)
61  {
62 @@ -349,7 +349,7 @@
63         finalize_initrd();
64  }
65  
66 -#endif /* CONFIG_SGI_IP27 */
67 +#endif /* CONFIG_NEED_MULTIPLE_NODES */
68  
69  /*
70   * arch_mem_init - initialize memory managment subsystem
71 diff -Nru linux-2.6.19.2/arch/mips/kernel/traps.c linux-ar7/arch/mips/kernel/traps.c
72 --- linux-2.6.19.2/arch/mips/kernel/traps.c     2007-01-11 02:10:37.000000000 +0700
73 +++ linux-ar7/arch/mips/kernel/traps.c  2007-03-15 13:19:19.000000000 +0700
74 @@ -1072,11 +1072,6 @@
75  unsigned long exception_handlers[32];
76  unsigned long vi_handlers[64];
77  
78 -/*
79 - * As a side effect of the way this is implemented we're limited
80 - * to interrupt handlers in the address range from
81 - * KSEG0 <= x < KSEG0 + 256mb on the Nevada.  Oh well ...
82 - */
83  void *set_except_vector(int n, void *addr)
84  {
85         unsigned long handler = (unsigned long) addr;
86 @@ -1084,9 +1079,15 @@
87  
88         exception_handlers[n] = handler;
89         if (n == 0 && cpu_has_divec) {
90 -               *(volatile u32 *)(ebase + 0x200) = 0x08000000 |
91 -                                                (0x03ffffff & (handler >> 2));
92 -               flush_icache_range(ebase + 0x200, ebase + 0x204);
93 +               /* lui k0, 0x0000 */
94 +               *(volatile u32 *)(CAC_BASE+0x200) = 0x3c1a0000 | (handler >> 16);
95 +               /* ori k0, 0x0000 */
96 +               *(volatile u32 *)(CAC_BASE+0x204) = 0x375a0000 | (handler & 0xffff);
97 +               /* jr k0 */
98 +               *(volatile u32 *)(CAC_BASE+0x208) = 0x03400008;
99 +               /* nop */
100 +               *(volatile u32 *)(CAC_BASE+0x20C) = 0x00000000;
101 +               flush_icache_range(CAC_BASE+0x200, CAC_BASE+0x210);
102         }
103         return (void *)old_handler;
104  }