Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / ppc / boot / simple / misc-prep.c
blob0086e1cfb48cbb1f66442e2c31a77d9de94b3668
1 /*
2 * Maintainer: Tom Rini <trini@kernel.crashing.org>
4 * In the past: Gary Thomas, Cort Dougan <cort@cs.nmt.edu>
5 */
7 #include <linux/pci_ids.h>
8 #include <linux/types.h>
9 #include <asm/residual.h>
10 #include <asm/string.h>
11 #include <asm/byteorder.h>
12 #include "mpc10x.h"
13 #include "of1275.h"
14 #include "nonstdio.h"
16 extern int keyb_present; /* keyboard controller is present by default */
17 RESIDUAL hold_resid_buf;
18 RESIDUAL *hold_residual = &hold_resid_buf;
19 static void *OFW_interface; /* Pointer to OF, if available. */
21 #ifdef CONFIG_VGA_CONSOLE
22 char *vidmem = (char *)0xC00B8000;
23 int lines = 25, cols = 80;
24 int orig_x, orig_y = 24;
25 #endif /* CONFIG_VGA_CONSOLE */
27 extern int CRT_tstc(void);
28 extern int vga_init(unsigned char *ISA_mem);
29 extern void gunzip(void *, int, unsigned char *, int *);
30 extern unsigned long serial_init(int chan, void *ignored);
31 extern void serial_fixups(void);
32 extern struct bi_record *decompress_kernel(unsigned long load_addr,
33 int num_words, unsigned long cksum);
34 extern void disable_6xx_mmu(void);
35 extern unsigned long mpc10x_get_mem_size(void);
37 static void
38 writel(unsigned int val, unsigned int address)
40 /* Ensure I/O operations complete */
41 __asm__ volatile("eieio");
42 *(unsigned int *)address = cpu_to_le32(val);
45 #define PCI_CFG_ADDR(dev,off) ((0x80<<24) | (dev<<8) | (off&0xfc))
46 #define PCI_CFG_DATA(off) (MPC10X_MAPA_CNFG_DATA+(off&3))
48 static void
49 pci_read_config_32(unsigned char devfn,
50 unsigned char offset,
51 unsigned int *val)
53 /* Ensure I/O operations complete */
54 __asm__ volatile("eieio");
55 *(unsigned int *)PCI_CFG_ADDR(devfn,offset) =
56 cpu_to_le32(MPC10X_MAPA_CNFG_ADDR);
57 /* Ensure I/O operations complete */
58 __asm__ volatile("eieio");
59 *val = le32_to_cpu(*(unsigned int *)PCI_CFG_DATA(offset));
60 return;
63 #ifdef CONFIG_VGA_CONSOLE
64 void
65 scroll(void)
67 int i;
69 memcpy ( vidmem, vidmem + cols * 2, ( lines - 1 ) * cols * 2 );
70 for ( i = ( lines - 1 ) * cols * 2; i < lines * cols * 2; i += 2 )
71 vidmem[i] = ' ';
73 #endif /* CONFIG_VGA_CONSOLE */
75 unsigned long
76 load_kernel(unsigned long load_addr, int num_words, unsigned long cksum,
77 RESIDUAL *residual, void *OFW)
79 int start_multi = 0;
80 unsigned int pci_viddid, pci_did, tulip_pci_base, tulip_base;
82 /* If we have Open Firmware, initialise it immediately */
83 if (OFW) {
84 OFW_interface = OFW;
85 ofinit(OFW_interface);
88 board_isa_init();
89 #if defined(CONFIG_VGA_CONSOLE)
90 vga_init((unsigned char *)0xC0000000);
91 #endif /* CONFIG_VGA_CONSOLE */
93 if (residual) {
94 /* Is this Motorola PPCBug? */
95 if ((1 & residual->VitalProductData.FirmwareSupports) &&
96 (1 == residual->VitalProductData.FirmwareSupplier)) {
97 unsigned char base_mod;
98 unsigned char board_type = inb(0x801) & 0xF0;
101 * Reset the onboard 21x4x Ethernet
102 * Motorola Ethernet is at IDSEL 14 (devfn 0x70)
104 pci_read_config_32(0x70, 0x00, &pci_viddid);
105 pci_did = (pci_viddid & 0xffff0000) >> 16;
106 /* Be sure we've really found a 21x4x chip */
107 if (((pci_viddid & 0xffff) == PCI_VENDOR_ID_DEC) &&
108 ((pci_did == PCI_DEVICE_ID_DEC_TULIP_FAST) ||
109 (pci_did == PCI_DEVICE_ID_DEC_TULIP) ||
110 (pci_did == PCI_DEVICE_ID_DEC_TULIP_PLUS) ||
111 (pci_did == PCI_DEVICE_ID_DEC_21142))) {
112 pci_read_config_32(0x70,
113 0x10,
114 &tulip_pci_base);
115 /* Get the physical base address */
116 tulip_base =
117 (tulip_pci_base & ~0x03UL) + 0x80000000;
118 /* Strobe the 21x4x reset bit in CSR0 */
119 writel(0x1, tulip_base);
122 /* If this is genesis 2 board then check for no
123 * keyboard controller and more than one processor.
125 if (board_type == 0xe0) {
126 base_mod = inb(0x803);
127 /* if a MVME2300/2400 or a Sitka then no keyboard */
128 if((base_mod == 0xFA) || (base_mod == 0xF9) ||
129 (base_mod == 0xE1)) {
130 keyb_present = 0; /* no keyboard */
133 /* If this is a multiprocessor system then
134 * park the other processor so that the
135 * kernel knows where to find them.
137 if (residual->MaxNumCpus > 1)
138 start_multi = 1;
140 memcpy(hold_residual,residual,sizeof(RESIDUAL));
143 /* Call decompress_kernel */
144 decompress_kernel(load_addr, num_words, cksum);
146 if (start_multi) {
147 residual->VitalProductData.SmpIar = (unsigned long)0xc0;
148 residual->Cpus[1].CpuState = CPU_GOOD;
149 hold_residual->VitalProductData.Reserved5 = 0xdeadbeef;
152 /* Now go and clear out the BATs and ensure that our MSR is
153 * correct .*/
154 disable_6xx_mmu();
156 /* Make r3 be a pointer to the residual data. */
157 return (unsigned long)hold_residual;
160 unsigned long
161 get_mem_size(void)
163 unsigned int pci_viddid, pci_did;
165 /* First, figure out what kind of host bridge we are on. If it's
166 * an MPC10x, we can ask it directly how much memory it has.
167 * Otherwise, see if the residual data has anything. This isn't
168 * the best way, but it can be the only way. If there's nothing,
169 * assume 32MB. -- Tom.
171 /* See what our host bridge is. */
172 pci_read_config_32(0x00, 0x00, &pci_viddid);
173 pci_did = (pci_viddid & 0xffff0000) >> 16;
174 /* See if we are on an MPC10x. */
175 if (((pci_viddid & 0xffff) == PCI_VENDOR_ID_MOTOROLA)
176 && ((pci_did == PCI_DEVICE_ID_MOTOROLA_MPC105)
177 || (pci_did == PCI_DEVICE_ID_MOTOROLA_MPC106)
178 || (pci_did == PCI_DEVICE_ID_MOTOROLA_MPC107)))
179 return mpc10x_get_mem_size();
180 /* If it's not, see if we have anything in the residual data. */
181 else if (hold_residual && hold_residual->TotalMemory)
182 return hold_residual->TotalMemory;
183 else if (OFW_interface) {
185 * This is a 'best guess' check. We want to make sure
186 * we don't try this on a PReP box without OF
187 * -- Cort
189 while (OFW_interface)
191 phandle dev_handle;
192 int mem_info[2];
194 /* get handle to memory description */
195 if (!(dev_handle = finddevice("/memory@0")))
196 break;
198 /* get the info */
199 if (getprop(dev_handle, "reg", mem_info,
200 sizeof(mem_info)) != 8)
201 break;
203 return mem_info[1];
207 /* Fall back to hard-coding 32MB. */
208 return 32*1024*1024;