Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-footbridge / cats-hw.c
blobd1ced86c379c4891c7bded8d4242cae46118daf0
1 /*
2 * linux/arch/arm/mach-footbridge/cats-hw.c
4 * CATS machine fixup
6 * Copyright (C) 1998, 1999 Russell King, Phil Blundell
7 */
8 #include <linux/ioport.h>
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/tty.h>
13 #include <asm/hardware/dec21285.h>
14 #include <asm/io.h>
15 #include <asm/mach-types.h>
16 #include <asm/setup.h>
18 #include <asm/mach/arch.h>
20 #include "common.h"
22 #define CFG_PORT 0x370
23 #define INDEX_PORT (CFG_PORT)
24 #define DATA_PORT (CFG_PORT + 1)
26 static int __init cats_hw_init(void)
28 if (machine_is_cats()) {
29 /* Set Aladdin to CONFIGURE mode */
30 outb(0x51, CFG_PORT);
31 outb(0x23, CFG_PORT);
33 /* Select logical device 3 */
34 outb(0x07, INDEX_PORT);
35 outb(0x03, DATA_PORT);
37 /* Set parallel port to DMA channel 3, ECP+EPP1.9,
38 enable EPP timeout */
39 outb(0x74, INDEX_PORT);
40 outb(0x03, DATA_PORT);
42 outb(0xf0, INDEX_PORT);
43 outb(0x0f, DATA_PORT);
45 outb(0xf1, INDEX_PORT);
46 outb(0x07, DATA_PORT);
48 /* Select logical device 4 */
49 outb(0x07, INDEX_PORT);
50 outb(0x04, DATA_PORT);
52 /* UART1 high speed mode */
53 outb(0xf0, INDEX_PORT);
54 outb(0x02, DATA_PORT);
56 /* Select logical device 5 */
57 outb(0x07, INDEX_PORT);
58 outb(0x05, DATA_PORT);
60 /* UART2 high speed mode */
61 outb(0xf0, INDEX_PORT);
62 outb(0x02, DATA_PORT);
64 /* Set Aladdin to RUN mode */
65 outb(0xbb, CFG_PORT);
68 return 0;
71 __initcall(cats_hw_init);
74 * CATS uses soft-reboot by default, since
75 * hard reboots fail on early boards.
77 static void __init
78 fixup_cats(struct machine_desc *desc, struct tag *tags,
79 char **cmdline, struct meminfo *mi)
81 ORIG_VIDEO_LINES = 25;
82 ORIG_VIDEO_POINTS = 16;
83 ORIG_Y = 24;
86 MACHINE_START(CATS, "Chalice-CATS")
87 MAINTAINER("Philip Blundell")
88 BOOT_MEM(0x00000000, DC21285_ARMCSR_BASE, 0xfe000000)
89 BOOT_PARAMS(0x00000100)
90 SOFT_REBOOT
91 FIXUP(fixup_cats)
92 MAPIO(footbridge_map_io)
93 INITIRQ(footbridge_init_irq)
94 .timer = &isa_timer,
95 MACHINE_END