setup.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * setup.c
  3.  *
  4.  * BRIEF MODULE DESCRIPTION
  5.  * Galileo Evaluation Boards - 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.  *
  11.  * Author: RidgeRun, Inc.
  12.  *   glonnon@ridgerun.com, skranz@ridgerun.com, stevej@ridgerun.com
  13.  *
  14.  * Copyright 2001 MontaVista Software Inc.
  15.  * Author: jsun@mvista.com or jsun@junsun.net
  16.  *
  17.  *  This program is free software; you can redistribute  it and/or modify it
  18.  *  under  the terms of  the GNU General  Public License as published by the
  19.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  20.  *  option) any later version.
  21.  *
  22.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  23.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  24.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  25.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  26.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  27.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  28.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  29.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  30.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  31.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32.  *
  33.  *  You should have received a copy of the  GNU General Public License along
  34.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  35.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  36.  *
  37.  */
  38. #include <linux/init.h>
  39. #include <linux/kernel.h>
  40. #include <linux/types.h>
  41. #include <linux/mc146818rtc.h>
  42. #include <linux/mm.h>
  43. #include <linux/swap.h>
  44. #include <linux/ioport.h>
  45. #include <linux/sched.h>
  46. #include <linux/interrupt.h>
  47. #include <linux/pci.h>
  48. #include <linux/timex.h>
  49. #include <linux/vmalloc.h>
  50. #include <asm/time.h>
  51. #include <asm/bootinfo.h>
  52. #include <asm/page.h>
  53. #include <asm/bootinfo.h>
  54. #include <asm/io.h>
  55. #include <asm/irq.h>
  56. #include <asm/pci.h>
  57. #include <asm/processor.h>
  58. #include <asm/ptrace.h>
  59. #include <asm/reboot.h>
  60. #include <asm/mc146818rtc.h>
  61. #include <linux/version.h>
  62. #include <linux/bootmem.h>
  63. #include <linux/blk.h>
  64. #include <asm/gt64120/gt64120.h>
  65. #include "ocelot_pld.h"
  66. extern struct rtc_ops no_rtc_ops;
  67. unsigned long gt64120_base = KSEG1ADDR(GT_DEF_BASE);
  68. /* These functions are used for rebooting or halting the machine*/
  69. extern void momenco_ocelot_restart(char *command);
  70. extern void momenco_ocelot_halt(void);
  71. extern void momenco_ocelot_power_off(void);
  72. extern void gt64120_time_init(void);
  73. extern void momenco_ocelot_irq_setup(void);
  74. static char reset_reason;
  75. #define ENTRYLO(x) ((pte_val(mk_pte_phys((x), PAGE_KERNEL_UNCACHED)) >> 6)|1)
  76. static void __init setup_l3cache(unsigned long size);
  77. void __init momenco_ocelot_setup(void)
  78. {
  79. void (*l3func)(unsigned long)=KSEG1ADDR(&setup_l3cache);
  80. unsigned int tmpword;
  81. board_time_init = gt64120_time_init;
  82. _machine_restart = momenco_ocelot_restart;
  83. _machine_halt = momenco_ocelot_halt;
  84. _machine_power_off = momenco_ocelot_power_off;
  85. /*
  86.  * initrd_start = (ulong)ocelot_initrd_start;
  87.  * initrd_end = (ulong)ocelot_initrd_start + (ulong)ocelot_initrd_size;
  88.  * initrd_below_start_ok = 1;
  89.  */
  90. rtc_ops = &no_rtc_ops;
  91. /* A wired TLB entry for the GT64120A and the serial port. The
  92.    GT64120A is going to be hit on every IRQ anyway - there's
  93.    absolutely no point in letting it be a random TLB entry, as
  94.    it'll just cause needless churning of the TLB. And we use
  95.    the other half for the serial port, which is just a PITA
  96.    otherwise :)
  97. Device Physical Virtual
  98. GT64120 Internal Regs 0x24000000 0xe0000000
  99. UARTs (CS2) 0x2d000000 0xe0001000
  100. */
  101. add_wired_entry(ENTRYLO(0x24000000), ENTRYLO(0x2D000000), 0xe0000000, PM_4K);
  102. /* Also a temporary entry to let us talk to the Ocelot PLD and NVRAM
  103.    in the CS[012] region. We can't use ioremap() yet. The NVRAM
  104.    appears to be one of the variants of ST M48T35 - see 
  105.    http://www.st.com/stonline/bin/sftab.exe?table=172&filter0=M48T35
  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. /* Relocate the CPU's view of the RAM... */
  133. GT_WRITE(GT_SCS10LD_OFS, 0);
  134. GT_WRITE(GT_SCS10HD_OFS, 0x0fe00000 >> 21);
  135. GT_WRITE(GT_SCS32LD_OFS, 0x10000000 >> 21);
  136. GT_WRITE(GT_SCS32HD_OFS, 0x0fe00000 >> 21);
  137. GT_WRITE(GT_SCS1LD_OFS, 0xff);
  138. GT_WRITE(GT_SCS1HD_OFS, 0x00);
  139. GT_WRITE(GT_SCS0LD_OFS, 0);
  140. GT_WRITE(GT_SCS0HD_OFS, 0xff);
  141. GT_WRITE(GT_SCS3LD_OFS, 0xff);
  142. GT_WRITE(GT_SCS3HD_OFS, 0x00);
  143. GT_WRITE(GT_SCS2LD_OFS, 0);
  144. GT_WRITE(GT_SCS2HD_OFS, 0xff);
  145. /* ...and the PCI0 view of it. */
  146. GT_WRITE(GT_PCI0_CFGADDR_OFS, 0x80000010);
  147. GT_WRITE(GT_PCI0_CFGDATA_OFS, 0x00000000);
  148. GT_WRITE(GT_PCI0_CFGADDR_OFS, 0x80000014);
  149. GT_WRITE(GT_PCI0_CFGDATA_OFS, 0x10000000);
  150. GT_WRITE(GT_PCI0_BS_SCS10_OFS, 0x0ffff000);
  151. GT_WRITE(GT_PCI0_BS_SCS32_OFS, 0x0ffff000);
  152. tmpword = OCELOT_PLD_READ(BOARDREV);
  153. if (tmpword < 26)
  154. printk("Momenco Ocelot: Board Assembly Rev. %cn", 'A'+tmpword);
  155. else
  156. printk("Momenco Ocelot: Board Assembly Revision #0x%xn", tmpword);
  157. tmpword = OCELOT_PLD_READ(PLD1_ID);
  158. printk("PLD 1 ID: %d.%dn", tmpword>>4, tmpword&15);
  159. tmpword = OCELOT_PLD_READ(PLD2_ID);
  160. printk("PLD 2 ID: %d.%dn", tmpword>>4, tmpword&15);
  161. tmpword = OCELOT_PLD_READ(RESET_STATUS);
  162. printk("Reset reason: 0x%xn", tmpword);
  163. reset_reason = tmpword;
  164. OCELOT_PLD_WRITE(0xff, RESET_STATUS);
  165. tmpword = OCELOT_PLD_READ(BOARD_STATUS);
  166. printk("Board Status register: 0x%02xn", tmpword);
  167. printk("  - User jumper: %sn", (tmpword & 0x80)?"installed":"absent");
  168. printk("  - Boot flash write jumper: %sn", (tmpword&0x40)?"installed":"absent");
  169. printk("  - Tulip PHY %s connectedn", (tmpword&0x10)?"is":"not");
  170. printk("  - L3 Cache size: %d MiBn", (1<<((tmpword&12) >> 2))&~1);
  171. printk("  - SDRAM size: %d MiBn", 1<<(6+(tmpword&3)));
  172. if (tmpword&12)
  173. l3func((1<<(((tmpword&12) >> 2)+20)));
  174. switch(tmpword &3) {
  175. case 3:
  176. /* 512MiB */
  177. add_memory_region(256<<20, 256<<20, BOOT_MEM_RAM);
  178. case 2:
  179. /* 256MiB */
  180. /* FIXME: Is it actually here, or at 0x10000000? */
  181. add_memory_region(128<<20, 128<<20, BOOT_MEM_RAM);
  182. case 1:
  183. /* 128MiB */
  184. add_memory_region(64<<20, 64<<20, BOOT_MEM_RAM);
  185. case 0:
  186. /* 64MiB */
  187. ;
  188. }
  189. /* Fix up the DiskOnChip mapping */
  190. GT_WRITE(0x468, 0xfef73);
  191. }
  192. extern int rm7k_tcache_enabled;
  193. /*
  194.  * This runs in KSEG1. See the verbiage in rm7k.c::probe_scache()
  195.  */
  196. #define Page_Invalidate_T 0x16
  197. static void __init setup_l3cache(unsigned long size)
  198. {
  199. int register i;
  200. unsigned long tmp;
  201. printk("Enabling L3 cache...");
  202. /* Enable the L3 cache in the GT64120A's CPU Configuration register */
  203. GT_READ(0, &tmp);
  204. GT_WRITE(0, tmp | (1<<14));
  205. /* Enable the L3 cache in the CPU */
  206. set_cp0_config(1<<12 /* CONF_TE */);
  207. /* Clear the cache */
  208. set_taglo(0);
  209. set_taghi(0);
  210. for (i=0; i < size; i+= 4096) {
  211. __asm__ __volatile__ (
  212. ".set noreordernt"
  213. ".set mips3nt"
  214. "cache %1, (%0)nt"
  215. ".set mips0nt"
  216. ".set reorder"
  217. :
  218. : "r" (KSEG0ADDR(i)),
  219.   "i" (Page_Invalidate_T));
  220. }
  221. /* Let the RM7000 MM code know that the tertiary cache is enabled */
  222. rm7k_tcache_enabled = 1;
  223. printk("Donen");
  224. }
  225. /* This needs to be one of the first initcalls, because no I/O port access
  226.    can work before this */
  227. static int io_base_ioremap(void)
  228. {
  229. void *io_remap_range = ioremap(GT_PCI_IO_BASE, GT_PCI_IO_SIZE);
  230. if (!io_remap_range) {
  231. panic("Could not ioremap I/O port rangen");
  232. }
  233. mips_io_port_base = io_remap_range - GT_PCI_IO_BASE;
  234. return 0;
  235. }
  236. module_init(io_base_ioremap);