setup.c 8.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *  Maple (970 eval board) setup code
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13
 *
 *  (c) Copyright 2004 Benjamin Herrenschmidt (benh@kernel.crashing.org),
 *                     IBM Corp. 
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  as published by the Free Software Foundation; either version
 *  2 of the License, or (at your option) any later version.
 *
 */

14
#undef DEBUG
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52

#include <linux/init.h>
#include <linux/errno.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/stddef.h>
#include <linux/unistd.h>
#include <linux/ptrace.h>
#include <linux/slab.h>
#include <linux/user.h>
#include <linux/a.out.h>
#include <linux/tty.h>
#include <linux/string.h>
#include <linux/delay.h>
#include <linux/ioport.h>
#include <linux/major.h>
#include <linux/initrd.h>
#include <linux/vt_kern.h>
#include <linux/console.h>
#include <linux/ide.h>
#include <linux/pci.h>
#include <linux/adb.h>
#include <linux/cuda.h>
#include <linux/pmu.h>
#include <linux/irq.h>
#include <linux/seq_file.h>
#include <linux/root_dev.h>
#include <linux/serial.h>
#include <linux/smp.h>

#include <asm/processor.h>
#include <asm/sections.h>
#include <asm/prom.h>
#include <asm/system.h>
#include <asm/pgtable.h>
#include <asm/bitops.h>
#include <asm/io.h>
M
Michael Ellerman 已提交
53
#include <asm/kexec.h>
L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61
#include <asm/pci-bridge.h>
#include <asm/iommu.h>
#include <asm/machdep.h>
#include <asm/dma.h>
#include <asm/cputable.h>
#include <asm/time.h>
#include <asm/of_device.h>
#include <asm/lmb.h>
62
#include <asm/mpic.h>
63
#include <asm/udbg.h>
L
Linus Torvalds 已提交
64

65 66
#include "maple.h"

L
Linus Torvalds 已提交
67 68 69 70 71 72
#ifdef DEBUG
#define DBG(fmt...) udbg_printf(fmt)
#else
#define DBG(fmt...)
#endif

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
static unsigned long maple_find_nvram_base(void)
{
	struct device_node *rtcs;
	unsigned long result = 0;

	/* find NVRAM device */
	rtcs = of_find_compatible_node(NULL, "nvram", "AMD8111");
	if (rtcs) {
		struct resource r;
		if (of_address_to_resource(rtcs, 0, &r)) {
			printk(KERN_EMERG "Maple: Unable to translate NVRAM"
			       " address\n");
			goto bail;
		}
		if (!(r.flags & IORESOURCE_IO)) {
			printk(KERN_EMERG "Maple: NVRAM address isn't PIO!\n");
			goto bail;
		}
		result = r.start;
	} else
		printk(KERN_EMERG "Maple: Unable to find NVRAM\n");
 bail:
	of_node_put(rtcs);
	return result;
}

L
Linus Torvalds 已提交
99 100
static void maple_restart(char *cmd)
{
D
David Gibson 已提交
101
	unsigned int maple_nvram_base;
102
	const unsigned int *maple_nvram_offset, *maple_nvram_command;
103
	struct device_node *sp;
D
David Gibson 已提交
104

105 106 107
	maple_nvram_base = maple_find_nvram_base();
	if (maple_nvram_base == 0)
		goto fail;
D
David Gibson 已提交
108 109

	/* find service processor device */
110 111
	sp = of_find_node_by_name(NULL, "service-processor");
	if (!sp) {
D
David Gibson 已提交
112
		printk(KERN_EMERG "Maple: Unable to find Service Processor\n");
113
		goto fail;
D
David Gibson 已提交
114
	}
115 116
	maple_nvram_offset = get_property(sp, "restart-addr", NULL);
	maple_nvram_command = get_property(sp, "restart-value", NULL);
117
	of_node_put(sp);
D
David Gibson 已提交
118 119

	/* send command */
120
	outb_p(*maple_nvram_command, maple_nvram_base + *maple_nvram_offset);
D
David Gibson 已提交
121
	for (;;) ;
122 123
 fail:
	printk(KERN_EMERG "Maple: Manual Restart Required\n");
L
Linus Torvalds 已提交
124 125 126 127
}

static void maple_power_off(void)
{
D
David Gibson 已提交
128
	unsigned int maple_nvram_base;
129
	const unsigned int *maple_nvram_offset, *maple_nvram_command;
130
	struct device_node *sp;
D
David Gibson 已提交
131

132 133 134
	maple_nvram_base = maple_find_nvram_base();
	if (maple_nvram_base == 0)
		goto fail;
D
David Gibson 已提交
135 136

	/* find service processor device */
137 138
	sp = of_find_node_by_name(NULL, "service-processor");
	if (!sp) {
D
David Gibson 已提交
139
		printk(KERN_EMERG "Maple: Unable to find Service Processor\n");
140
		goto fail;
D
David Gibson 已提交
141
	}
142 143
	maple_nvram_offset = get_property(sp, "power-off-addr", NULL);
	maple_nvram_command = get_property(sp, "power-off-value", NULL);
144
	of_node_put(sp);
D
David Gibson 已提交
145 146

	/* send command */
147
	outb_p(*maple_nvram_command, maple_nvram_base + *maple_nvram_offset);
D
David Gibson 已提交
148
	for (;;) ;
149 150
 fail:
	printk(KERN_EMERG "Maple: Manual Power-Down Required\n");
L
Linus Torvalds 已提交
151 152 153 154
}

static void maple_halt(void)
{
D
David Gibson 已提交
155
	maple_power_off();
L
Linus Torvalds 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
}

#ifdef CONFIG_SMP
struct smp_ops_t maple_smp_ops = {
	.probe		= smp_mpic_probe,
	.message_pass	= smp_mpic_message_pass,
	.kick_cpu	= smp_generic_kick_cpu,
	.setup_cpu	= smp_mpic_setup_cpu,
	.give_timebase	= smp_generic_give_timebase,
	.take_timebase	= smp_generic_take_timebase,
};
#endif /* CONFIG_SMP */

void __init maple_setup_arch(void)
{
	/* init to some ~sane value until calibrate_delay() runs */
	loops_per_jiffy = 50000000;

	/* Setup SMP callback */
#ifdef CONFIG_SMP
	smp_ops = &maple_smp_ops;
#endif
	/* Lookup PCI hosts */
       	maple_pci_init();

#ifdef CONFIG_DUMMY_CONSOLE
	conswitchp = &dummy_con;
#endif
184

185
	printk(KERN_DEBUG "Using native/NAP idle loop\n");
L
Linus Torvalds 已提交
186 187 188 189 190 191 192 193 194
}

/* 
 * Early initialization.
 */
static void __init maple_init_early(void)
{
	DBG(" -> maple_init_early\n");

195
	iommu_init_early_dart();
L
Linus Torvalds 已提交
196 197 198 199

	DBG(" <- maple_init_early\n");
}

200 201 202 203 204 205
/*
 * This is almost identical to pSeries and CHRP. We need to make that
 * code generic at one point, with appropriate bits in the device-tree to
 * identify the presence of an HT APIC
 */
static void __init maple_init_IRQ(void)
L
Linus Torvalds 已提交
206
{
207
	struct device_node *root, *np, *mpic_node = NULL;
208
	const unsigned int *opprop;
209 210
	unsigned long openpic_addr = 0;
	int naddr, n, i, opplen, has_isus = 0;
L
Linus Torvalds 已提交
211
	struct mpic *mpic;
212
	unsigned int flags = MPIC_PRIMARY;
L
Linus Torvalds 已提交
213

214 215 216 217
	/* Locate MPIC in the device-tree. Note that there is a bug
	 * in Maple device-tree where the type of the controller is
	 * open-pic and not interrupt-controller
	 */
218 219 220 221 222 223 224 225 226 227 228

	for_each_node_by_type(np, "interrupt-controller")
		if (device_is_compatible(np, "open-pic")) {
			mpic_node = np;
			break;
		}
	if (mpic_node == NULL)
		for_each_node_by_type(np, "open-pic") {
			mpic_node = np;
			break;
		}
229 230 231 232 233
	if (mpic_node == NULL) {
		printk(KERN_ERR
		       "Failed to locate the MPIC interrupt controller\n");
		return;
	}
L
Linus Torvalds 已提交
234

235
	/* Find address list in /platform-open-pic */
L
Linus Torvalds 已提交
236
	root = of_find_node_by_path("/");
237
	naddr = prom_n_addr_cells(root);
238
	opprop = get_property(root, "platform-open-pic", &opplen);
239 240 241 242 243 244
	if (opprop != 0) {
		openpic_addr = of_read_number(opprop, naddr);
		has_isus = (opplen > naddr);
		printk(KERN_DEBUG "OpenPIC addr: %lx, has ISUs: %d\n",
		       openpic_addr, has_isus);
	}
L
Linus Torvalds 已提交
245 246
	of_node_put(root);

247
	BUG_ON(openpic_addr == 0);
L
Linus Torvalds 已提交
248

249 250 251 252 253 254
	/* Check for a big endian MPIC */
	if (get_property(np, "big-endian", NULL) != NULL)
		flags |= MPIC_BIG_ENDIAN;

	/* XXX Maple specific bits */
	flags |= MPIC_BROKEN_U3 | MPIC_WANTS_RESET;
255 256
	/* All U3/U4 are big-endian, older SLOF firmware doesn't encode this */
	flags |= MPIC_BIG_ENDIAN;
257 258 259 260 261 262 263

	/* Setup the openpic driver. More device-tree junks, we hard code no
	 * ISUs for now. I'll have to revisit some stuffs with the folks doing
	 * the firmware for those
	 */
	mpic = mpic_alloc(mpic_node, openpic_addr, flags,
			  /*has_isus ? 16 :*/ 0, 0, " MPIC     ");
L
Linus Torvalds 已提交
264 265
	BUG_ON(mpic == NULL);

266 267 268 269 270 271 272 273 274 275 276 277
	/* Add ISUs */
	opplen /= sizeof(u32);
	for (n = 0, i = naddr; i < opplen; i += naddr, n++) {
		unsigned long isuaddr = of_read_number(opprop + i, naddr);
		mpic_assign_isu(mpic, n, isuaddr);
	}

	/* All ISUs are setup, complete initialization */
	mpic_init(mpic);
	ppc_md.get_irq = mpic_get_irq;
	of_node_put(mpic_node);
	of_node_put(root);
L
Linus Torvalds 已提交
278 279 280 281 282 283 284 285 286 287 288
}

static void __init maple_progress(char *s, unsigned short hex)
{
	printk("*** %04x : %s\n", hex, s ? s : "");
}


/*
 * Called very early, MMU is off, device-tree isn't unflattened
 */
289
static int __init maple_probe(void)
L
Linus Torvalds 已提交
290
{
291
	unsigned long root = of_get_flat_dt_root();
292 293 294

	if (!of_flat_dt_is_compatible(root, "Momentum,Maple") &&
	    !of_flat_dt_is_compatible(root, "Momentum,Apache"))
L
Linus Torvalds 已提交
295 296 297 298 299 300 301
		return 0;
	/*
	 * On U3, the DART (iommu) must be allocated now since it
	 * has an impact on htab_initialize (due to the large page it
	 * occupies having to be broken up so the DART itself is not
	 * part of the cacheable linar mapping
	 */
302
	alloc_dart_table();
L
Linus Torvalds 已提交
303

304 305
	hpte_init_native();

L
Linus Torvalds 已提交
306 307 308
	return 1;
}

309 310
define_machine(maple_md) {
	.name			= "Maple",
L
Linus Torvalds 已提交
311 312 313 314 315 316 317 318 319 320 321 322
	.probe			= maple_probe,
	.setup_arch		= maple_setup_arch,
	.init_early		= maple_init_early,
	.init_IRQ		= maple_init_IRQ,
	.pcibios_fixup		= maple_pcibios_fixup,
	.pci_get_legacy_ide_irq	= maple_pci_get_legacy_ide_irq,
	.restart		= maple_restart,
	.power_off		= maple_power_off,
	.halt			= maple_halt,
       	.get_boot_time		= maple_get_boot_time,
       	.set_rtc_time		= maple_set_rtc_time,
       	.get_rtc_time		= maple_get_rtc_time,
323
      	.calibrate_decr		= generic_calibrate_decr,
L
Linus Torvalds 已提交
324
	.progress		= maple_progress,
325
	.power_save		= power4_idle,
M
Michael Ellerman 已提交
326 327 328
#ifdef CONFIG_KEXEC
	.machine_kexec		= default_machine_kexec,
	.machine_kexec_prepare	= default_machine_kexec_prepare,
329
	.machine_crash_shutdown	= default_machine_crash_shutdown,
M
Michael Ellerman 已提交
330
#endif
L
Linus Torvalds 已提交
331
};