| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * Setup pointers to hardware-dependent routines. | 
 | 3 |  * | 
 | 4 |  * This file is subject to the terms and conditions of the GNU General Public | 
 | 5 |  * License.  See the file "COPYING" in the main directory of this archive | 
 | 6 |  * for more details. | 
 | 7 |  * | 
 | 8 |  * Copyright (C) 1996, 1997, 1998, 2001 by Ralf Baechle | 
 | 9 |  * Copyright (C) 2001 MIPS Technologies, Inc. | 
 | 10 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/eisa.h> | 
 | 12 | #include <linux/hdreg.h> | 
 | 13 | #include <linux/init.h> | 
 | 14 | #include <linux/ioport.h> | 
 | 15 | #include <linux/sched.h> | 
 | 16 | #include <linux/interrupt.h> | 
 | 17 | #include <linux/mm.h> | 
 | 18 | #include <linux/console.h> | 
 | 19 | #include <linux/fb.h> | 
 | 20 | #include <linux/ide.h> | 
| Ralf Baechle | fcdb27a | 2006-01-18 17:37:07 +0000 | [diff] [blame] | 21 | #include <linux/pm.h> | 
 | 22 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm/bootinfo.h> | 
 | 24 | #include <asm/irq.h> | 
 | 25 | #include <asm/jazz.h> | 
 | 26 | #include <asm/jazzdma.h> | 
 | 27 | #include <asm/ptrace.h> | 
 | 28 | #include <asm/reboot.h> | 
 | 29 | #include <asm/io.h> | 
 | 30 | #include <asm/pgtable.h> | 
 | 31 | #include <asm/time.h> | 
 | 32 | #include <asm/traps.h> | 
 | 33 |  | 
 | 34 | extern asmlinkage void jazz_handle_int(void); | 
 | 35 |  | 
 | 36 | extern void jazz_machine_restart(char *command); | 
 | 37 | extern void jazz_machine_halt(void); | 
 | 38 | extern void jazz_machine_power_off(void); | 
 | 39 |  | 
| Ralf Baechle | 54d0a21 | 2006-07-09 21:38:56 +0100 | [diff] [blame] | 40 | void __init plat_time_init(struct irqaction *irq) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { | 
 | 42 | 	/* set the clock to 100 Hz */ | 
 | 43 | 	r4030_write_reg32(JAZZ_TIMER_INTERVAL, 9); | 
 | 44 | 	setup_irq(JAZZ_TIMER_IRQ, irq); | 
 | 45 | } | 
 | 46 |  | 
 | 47 | static struct resource jazz_io_resources[] = { | 
 | 48 | 	{ "dma1", 0x00, 0x1f, IORESOURCE_BUSY }, | 
 | 49 | 	{ "timer", 0x40, 0x5f, IORESOURCE_BUSY }, | 
 | 50 | 	{ "dma page reg", 0x80, 0x8f, IORESOURCE_BUSY }, | 
 | 51 | 	{ "dma2", 0xc0, 0xdf, IORESOURCE_BUSY }, | 
 | 52 | }; | 
 | 53 |  | 
| Ralf Baechle | 2925aba | 2006-06-18 01:32:22 +0100 | [diff] [blame] | 54 | void __init plat_mem_setup(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { | 
 | 56 | 	int i; | 
 | 57 |  | 
 | 58 | 	/* Map 0xe0000000 -> 0x0:800005C0, 0xe0010000 -> 0x1:30000580 */ | 
 | 59 | 	add_wired_entry (0x02000017, 0x03c00017, 0xe0000000, PM_64K); | 
 | 60 |  | 
 | 61 | 	/* Map 0xe2000000 -> 0x0:900005C0, 0xe3010000 -> 0x0:910005C0 */ | 
 | 62 | 	add_wired_entry (0x02400017, 0x02440017, 0xe2000000, PM_16M); | 
 | 63 |  | 
 | 64 | 	/* Map 0xe4000000 -> 0x0:600005C0, 0xe4100000 -> 400005C0 */ | 
 | 65 | 	add_wired_entry (0x01800017, 0x01000017, 0xe4000000, PM_4M); | 
 | 66 |  | 
 | 67 | 	set_io_port_base(JAZZ_PORT_BASE); | 
 | 68 | #ifdef CONFIG_EISA | 
 | 69 | 	if (mips_machtype == MACH_MIPS_MAGNUM_4000) | 
 | 70 | 		EISA_bus = 1; | 
 | 71 | #endif | 
 | 72 | 	isa_slot_offset = 0xe3000000; | 
 | 73 |  | 
 | 74 | 	/* request I/O space for devices used on all i[345]86 PCs */ | 
 | 75 | 	for (i = 0; i < ARRAY_SIZE(jazz_io_resources); i++) | 
 | 76 | 		request_resource(&ioport_resource, jazz_io_resources + i); | 
 | 77 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | 	/* The RTC is outside the port address space */ | 
 | 79 |  | 
 | 80 | 	_machine_restart = jazz_machine_restart; | 
 | 81 | 	_machine_halt = jazz_machine_halt; | 
| Ralf Baechle | fcdb27a | 2006-01-18 17:37:07 +0000 | [diff] [blame] | 82 | 	pm_power_off = jazz_machine_power_off; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 |  | 
 | 84 | #warning "Somebody should check if screen_info is ok for Jazz." | 
 | 85 |  | 
 | 86 | 	screen_info = (struct screen_info) { | 
 | 87 | 		0, 0,		/* orig-x, orig-y */ | 
 | 88 | 		0,		/* unused */ | 
 | 89 | 		0,		/* orig_video_page */ | 
 | 90 | 		0,		/* orig_video_mode */ | 
 | 91 | 		160,		/* orig_video_cols */ | 
 | 92 | 		0, 0, 0,	/* unused, ega_bx, unused */ | 
 | 93 | 		64,		/* orig_video_lines */ | 
 | 94 | 		0,		/* orig_video_isVGA */ | 
 | 95 | 		16		/* orig_video_points */ | 
 | 96 | 	}; | 
 | 97 |  | 
 | 98 | 	vdma_init(); | 
 | 99 | } |