setup.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:10k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * setup.c
  3.  *
  4.  * BRIEF MODULE DESCRIPTION
  5.  * Momentum Computer Ocelot (CP7000) - board dependent boot routines
  6.  *
  7.  * Copyright (C) 1996, 1997, 2001  Ralf Baechle
  8.  * Copyright (C) 2000 RidgeRun, Inc.
  9.  * Copyright (C) 2001 Red Hat, Inc.
  10.  * Copyright (C) 2002 Momentum Computer
  11.  *
  12.  * Author: RidgeRun, Inc.
  13.  *   glonnon@ridgerun.com, skranz@ridgerun.com, stevej@ridgerun.com
  14.  *
  15.  * Copyright 2001 MontaVista Software Inc.
  16.  * Author: jsun@mvista.com or jsun@junsun.net
  17.  *
  18.  *  This program is free software; you can redistribute  it and/or modify it
  19.  *  under  the terms of  the GNU General  Public License as published by the
  20.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  21.  *  option) any later version.
  22.  *
  23.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  24.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  25.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  26.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  27.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  28.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  29.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  30.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  31.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  32.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33.  *
  34.  *  You should have received a copy of the  GNU General Public License along
  35.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  36.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  37.  *
  38.  */
  39. #include <linux/init.h>
  40. #include <linux/kernel.h>
  41. #include <linux/types.h>
  42. #include <linux/mc146818rtc.h>
  43. #include <linux/mm.h>
  44. #include <linux/swap.h>
  45. #include <linux/ioport.h>
  46. #include <linux/sched.h>
  47. #include <linux/interrupt.h>
  48. #include <linux/pci.h>
  49. #include <linux/timex.h>
  50. #include <linux/vmalloc.h>
  51. #include <asm/time.h>
  52. #include <asm/bootinfo.h>
  53. #include <asm/page.h>
  54. #include <asm/bootinfo.h>
  55. #include <asm/io.h>
  56. #include <asm/irq.h>
  57. #include <asm/pci.h>
  58. #include <asm/processor.h>
  59. #include <asm/ptrace.h>
  60. #include <asm/reboot.h>
  61. #include <asm/mc146818rtc.h>
  62. #include <linux/version.h>
  63. #include <linux/bootmem.h>
  64. #include <linux/blk.h>
  65. #include <asm/gt64120/gt64120.h>
  66. #include "ocelot_pld.h"
  67. extern struct rtc_ops no_rtc_ops;
  68. unsigned long gt64120_base = KSEG1ADDR(GT_DEF_BASE);
  69. /* These functions are used for rebooting or halting the machine*/
  70. extern void momenco_ocelot_restart(char *command);
  71. extern void momenco_ocelot_halt(void);
  72. extern void momenco_ocelot_power_off(void);
  73. extern void gt64120_time_init(void);
  74. extern void momenco_ocelot_irq_setup(void);
  75. static char reset_reason;
  76. #define ENTRYLO(x) ((pte_val(mk_pte_phys((x), PAGE_KERNEL_UNCACHED)) >> 6)|1)
  77. static void __init setup_l3cache(unsigned long size);
  78. void __init momenco_ocelot_setup(void)
  79. {
  80. void (*l3func)(unsigned long)=KSEG1ADDR(&setup_l3cache);
  81. unsigned int tmpword;
  82. board_time_init = gt64120_time_init;
  83. _machine_restart = momenco_ocelot_restart;
  84. _machine_halt = momenco_ocelot_halt;
  85. _machine_power_off = momenco_ocelot_power_off;
  86. /*
  87.  * initrd_start = (ulong)ocelot_initrd_start;
  88.  * initrd_end = (ulong)ocelot_initrd_start + (ulong)ocelot_initrd_size;
  89.  * initrd_below_start_ok = 1;
  90.  */
  91. rtc_ops = &no_rtc_ops;
  92. /* A wired TLB entry for the GT64120A and the serial port. The
  93.    GT64120A is going to be hit on every IRQ anyway - there's
  94.    absolutely no point in letting it be a random TLB entry, as
  95.    it'll just cause needless churning of the TLB. And we use
  96.    the other half for the serial port, which is just a PITA
  97.    otherwise :)
  98. Device Physical Virtual
  99. GT64120 Internal Regs 0x24000000 0xe0000000
  100. UARTs (CS2) 0x2d000000 0xe0001000
  101. */
  102. add_wired_entry(ENTRYLO(0x24000000), ENTRYLO(0x2D000000), 0xe0000000, PM_4K);
  103. /* Also a temporary entry to let us talk to the Ocelot PLD and NVRAM
  104.    in the CS[012] region. We can't use ioremap() yet. The NVRAM
  105.    is a ST M48T37Y, which includes NVRAM, RTC, and Watchdog functions.
  106. Ocelot PLD (CS0) 0x2c000000 0xe0020000
  107. NVRAM 0x2c800000 0xe0030000
  108. */
  109. add_temporary_entry(ENTRYLO(0x2C000000), ENTRYLO(0x2d000000), 0xe0020000, PM_64K);
  110. /* Relocate the CS3/BootCS region */
  111.    GT_WRITE( GT_CS3BOOTLD_OFS, 0x2f000000 >> 21);
  112. /* Relocate CS[012] */
  113.   GT_WRITE(GT_CS20LD_OFS, 0x2c000000 >> 21);
  114. /* Relocate the GT64120A itself... */
  115. GT_WRITE(GT_ISD_OFS, 0x24000000 >> 21);
  116. mb();
  117. gt64120_base = 0xe0000000;
  118. /* ...and the PCI0 view of it. */
  119. GT_WRITE(GT_PCI0_CFGADDR_OFS, 0x80000020);
  120. GT_WRITE(GT_PCI0_CFGDATA_OFS, 0x24000000);
  121. GT_WRITE(GT_PCI0_CFGADDR_OFS, 0x80000024);
  122. GT_WRITE(GT_PCI0_CFGDATA_OFS, 0x24000001);
  123. /* Relocate PCI0 I/O and Mem0 */
  124. GT_WRITE(GT_PCI0IOLD_OFS, 0x20000000 >> 21);
  125. GT_WRITE(GT_PCI0M0LD_OFS, 0x22000000 >> 21);
  126. /* Relocate PCI0 Mem1 */
  127. GT_WRITE(GT_PCI0M1LD_OFS, 0x36000000 >> 21);
  128. /* Relocate all the PCI1 stuff, not that we use it */
  129. GT_WRITE(GT_PCI1IOLD_OFS, 0x30000000 >> 21);
  130. GT_WRITE(GT_PCI1M0LD_OFS, 0x32000000 >> 21);
  131. GT_WRITE(GT_PCI1M1LD_OFS, 0x34000000 >> 21);
  132. /* For the initial programming, we assume 512MB configuration */
  133. /* Relocate the CPU's view of the RAM... */
  134. GT_WRITE(GT_SCS10LD_OFS, 0);
  135. GT_WRITE(GT_SCS10HD_OFS, 0x0fe00000 >> 21);
  136. GT_WRITE(GT_SCS32LD_OFS, 0x10000000 >> 21);
  137. GT_WRITE(GT_SCS32HD_OFS, 0x0fe00000 >> 21);
  138. GT_WRITE(GT_SCS1LD_OFS, 0xff);
  139. GT_WRITE(GT_SCS1HD_OFS, 0x00);
  140. GT_WRITE(GT_SCS0LD_OFS, 0);
  141. GT_WRITE(GT_SCS0HD_OFS, 0xff);
  142. GT_WRITE(GT_SCS3LD_OFS, 0xff);
  143. GT_WRITE(GT_SCS3HD_OFS, 0x00);
  144. GT_WRITE(GT_SCS2LD_OFS, 0);
  145. GT_WRITE(GT_SCS2HD_OFS, 0xff);
  146. /* ...and the PCI0 view of it. */
  147. GT_WRITE(GT_PCI0_CFGADDR_OFS, 0x80000010);
  148. GT_WRITE(GT_PCI0_CFGDATA_OFS, 0x00000000);
  149. GT_WRITE(GT_PCI0_CFGADDR_OFS, 0x80000014);
  150. GT_WRITE(GT_PCI0_CFGDATA_OFS, 0x10000000);
  151. GT_WRITE(GT_PCI0_BS_SCS10_OFS, 0x0ffff000);
  152. GT_WRITE(GT_PCI0_BS_SCS32_OFS, 0x0ffff000);
  153. tmpword = OCELOT_PLD_READ(BOARDREV);
  154. if (tmpword < 26)
  155. printk("Momenco Ocelot: Board Assembly Rev. %cn", 'A'+tmpword);
  156. else
  157. printk("Momenco Ocelot: Board Assembly Revision #0x%xn", tmpword);
  158. tmpword = OCELOT_PLD_READ(PLD1_ID);
  159. printk("PLD 1 ID: %d.%dn", tmpword>>4, tmpword&15);
  160. tmpword = OCELOT_PLD_READ(PLD2_ID);
  161. printk("PLD 2 ID: %d.%dn", tmpword>>4, tmpword&15);
  162. tmpword = OCELOT_PLD_READ(RESET_STATUS);
  163. printk("Reset reason: 0x%xn", tmpword);
  164. reset_reason = tmpword;
  165. OCELOT_PLD_WRITE(0xff, RESET_STATUS);
  166. tmpword = OCELOT_PLD_READ(BOARD_STATUS);
  167. printk("Board Status register: 0x%02xn", tmpword);
  168. printk("  - User jumper: %sn", (tmpword & 0x80)?"installed":"absent");
  169. printk("  - Boot flash write jumper: %sn", (tmpword&0x40)?"installed":"absent");
  170. printk("  - Tulip PHY %s connectedn", (tmpword&0x10)?"is":"not");
  171. printk("  - L3 Cache size: %d MiBn", (1<<((tmpword&12) >> 2))&~1);
  172. printk("  - SDRAM size: %d MiBn", 1<<(6+(tmpword&3)));
  173. if (tmpword&12)
  174. l3func((1<<(((tmpword&12) >> 2)+20)));
  175. switch(tmpword &3) {
  176. case 3:
  177. /* 512MiB */
  178. /* Decoders are allready set -- just add the
  179.  * appropriate region */
  180. add_memory_region( 0x40<<20,  0xC0<<20, BOOT_MEM_RAM);
  181. add_memory_region(0x100<<20, 0x100<<20, BOOT_MEM_RAM);
  182. break;
  183. case 2:
  184. /* 256MiB -- two banks of 128MiB */
  185. GT_WRITE(GT_SCS10HD_OFS, 0x07e00000 >> 21);
  186. GT_WRITE(GT_SCS32LD_OFS, 0x08000000 >> 21);
  187. GT_WRITE(GT_SCS32HD_OFS, 0x0fe00000 >> 21);
  188. GT_WRITE(GT_SCS0HD_OFS, 0x7f);
  189. GT_WRITE(GT_SCS2LD_OFS, 0x80);
  190. GT_WRITE(GT_SCS2HD_OFS, 0xff);
  191. /* reconfigure the PCI0 interface view of memory */
  192. GT_WRITE(GT_PCI0_CFGADDR_OFS, 0x80000014);
  193. GT_WRITE(GT_PCI0_CFGDATA_OFS, 0x08000000);
  194. GT_WRITE(GT_PCI0_BS_SCS10_OFS, 0x0ffff000);
  195. GT_WRITE(GT_PCI0_BS_SCS32_OFS, 0x0ffff000);
  196. add_memory_region(0x40<<20, 0x40<<20, BOOT_MEM_RAM);
  197. add_memory_region(0x80<<20, 0x80<<20, BOOT_MEM_RAM);
  198. break;
  199. case 1:
  200. /* 128MiB -- 64MiB per bank */
  201. GT_WRITE(GT_SCS10HD_OFS, 0x03e00000 >> 21);
  202. GT_WRITE(GT_SCS32LD_OFS, 0x04000000 >> 21);
  203. GT_WRITE(GT_SCS32HD_OFS, 0x07e00000 >> 21);
  204. GT_WRITE(GT_SCS0HD_OFS, 0x3f);
  205. GT_WRITE(GT_SCS2LD_OFS, 0x40);
  206. GT_WRITE(GT_SCS2HD_OFS, 0x7f);
  207. /* reconfigure the PCI0 interface view of memory */
  208. GT_WRITE(GT_PCI0_CFGADDR_OFS, 0x80000014);
  209. GT_WRITE(GT_PCI0_CFGDATA_OFS, 0x04000000);
  210. GT_WRITE(GT_PCI0_BS_SCS10_OFS, 0x03fff000);
  211. GT_WRITE(GT_PCI0_BS_SCS32_OFS, 0x03fff000);
  212. /* add the appropriate region */
  213. add_memory_region(0x40<<20, 0x40<<20, BOOT_MEM_RAM);
  214. break;
  215. case 0:
  216. /* 64MiB */
  217. GT_WRITE(GT_SCS10HD_OFS, 0x01e00000 >> 21);
  218. GT_WRITE(GT_SCS32LD_OFS, 0x02000000 >> 21);
  219. GT_WRITE(GT_SCS32HD_OFS, 0x03e00000 >> 21);
  220. GT_WRITE(GT_SCS0HD_OFS, 0x1f);
  221. GT_WRITE(GT_SCS2LD_OFS, 0x20);
  222. GT_WRITE(GT_SCS2HD_OFS, 0x3f);
  223. /* reconfigure the PCI0 interface view of memory */
  224. GT_WRITE(GT_PCI0_CFGADDR_OFS, 0x80000014);
  225. GT_WRITE(GT_PCI0_CFGDATA_OFS, 0x04000000);
  226. GT_WRITE(GT_PCI0_BS_SCS10_OFS, 0x01fff000);
  227. GT_WRITE(GT_PCI0_BS_SCS32_OFS, 0x01fff000);
  228. break;
  229. }
  230. /* Fix up the DiskOnChip mapping */
  231. GT_WRITE(0x468, 0xfef73);
  232. }
  233. extern int rm7k_tcache_enabled;
  234. /*
  235.  * This runs in KSEG1. See the verbiage in rm7k.c::probe_scache()
  236.  */
  237. #define Page_Invalidate_T 0x16
  238. static void __init setup_l3cache(unsigned long size)
  239. {
  240. int register i;
  241. unsigned long tmp;
  242. printk("Enabling L3 cache...");
  243. /* Enable the L3 cache in the GT64120A's CPU Configuration register */
  244. GT_READ(0, &tmp);
  245. GT_WRITE(0, tmp | (1<<14));
  246. /* Enable the L3 cache in the CPU */
  247. set_cp0_config(1<<12 /* CONF_TE */);
  248. /* Clear the cache */
  249. set_taglo(0);
  250. set_taghi(0);
  251. for (i=0; i < size; i+= 4096) {
  252. __asm__ __volatile__ (
  253. ".set noreordernt"
  254. ".set mips3nt"
  255. "cache %1, (%0)nt"
  256. ".set mips0nt"
  257. ".set reorder"
  258. :
  259. : "r" (KSEG0ADDR(i)),
  260.   "i" (Page_Invalidate_T));
  261. }
  262. /* Let the RM7000 MM code know that the tertiary cache is enabled */
  263. rm7k_tcache_enabled = 1;
  264. printk("Donen");
  265. }
  266. /* This needs to be one of the first initcalls, because no I/O port access
  267.    can work before this */
  268. static int io_base_ioremap(void)
  269. {
  270. void *io_remap_range = ioremap(GT_PCI_IO_BASE, GT_PCI_IO_SIZE);
  271. if (!io_remap_range) {
  272. panic("Could not ioremap I/O port range");
  273. }
  274. set_io_port_base(io_remap_range - GT_PCI_IO_BASE);
  275. return 0;
  276. }
  277. module_init(io_base_ioremap);