blob: 3af34fa3a344ba8509b6184acab3dc93a60b4cd4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/m68k/sun3/config.c
3 *
4 * Copyright (C) 1996,1997 Pekka Pietik{inen
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive
8 * for more details.
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/types.h>
12#include <linux/kernel.h>
13#include <linux/mm.h>
Alexey Dobriyan813dcf72008-10-03 22:42:36 +040014#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/tty.h>
16#include <linux/console.h>
17#include <linux/init.h>
18#include <linux/bootmem.h>
Finn Thain0d31f872014-11-13 12:21:28 +110019#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/oplib.h>
22#include <asm/setup.h>
23#include <asm/contregs.h>
24#include <asm/movs.h>
25#include <asm/pgtable.h>
Roman Zippel12d810c2007-05-31 00:40:54 -070026#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/sun3-head.h>
28#include <asm/sun3mmu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/machdep.h>
Finn Thain0d31f872014-11-13 12:21:28 +110030#include <asm/machines.h>
Geert Uytterhoevenc85627f2008-12-21 12:03:37 +010031#include <asm/idprom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/intersil.h>
33#include <asm/irq.h>
Geert Uytterhoevenc85627f2008-12-21 12:03:37 +010034#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/segment.h>
36#include <asm/sun3ints.h>
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038char sun3_reserved_pmeg[SUN3_PMEGS_NUM];
39
Stephen Warrenc8d5ba12012-11-08 11:34:55 -070040extern u32 sun3_gettimeoffset(void);
Adrian Bunk07b81252008-07-17 21:16:27 +020041static void sun3_sched_init(irq_handler_t handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042extern void sun3_get_model (char* model);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043extern int sun3_hwclk(int set, struct rtc_time *t);
44
45volatile char* clock_va;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046extern unsigned long availmem;
47unsigned long num_pages;
48
Alexey Dobriyan813dcf72008-10-03 22:42:36 +040049static void sun3_get_hardware_list(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Alexey Dobriyan813dcf72008-10-03 22:42:36 +040051 seq_printf(m, "PROM Revision:\t%s\n", romvec->pv_monid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
54void __init sun3_init(void)
55{
56 unsigned char enable_register;
57 int i;
58
59 m68k_machtype= MACH_SUN3;
60 m68k_cputype = CPU_68020;
61 m68k_fputype = FPU_68881; /* mc68881 actually */
62 m68k_mmutype = MMU_SUN3;
63 clock_va = (char *) 0xfe06000; /* dark */
64 sun3_intreg = (unsigned char *) 0xfe0a000; /* magic */
65 sun3_disable_interrupts();
66
67 prom_init((void *)LINUX_OPPROM_BEGVM);
68
69 GET_CONTROL_BYTE(AC_SENABLE,enable_register);
70 enable_register |= 0x50; /* Enable FPU */
71 SET_CONTROL_BYTE(AC_SENABLE,enable_register);
72 GET_CONTROL_BYTE(AC_SENABLE,enable_register);
73
74 /* This code looks suspicious, because it doesn't subtract
75 memory belonging to the kernel from the available space */
76
77
78 memset(sun3_reserved_pmeg, 0, sizeof(sun3_reserved_pmeg));
79
80 /* Reserve important PMEGS */
81 /* FIXME: These should be probed instead of hardcoded */
82
83 for (i=0; i<8; i++) /* Kernel PMEGs */
84 sun3_reserved_pmeg[i] = 1;
85
86 sun3_reserved_pmeg[247] = 1; /* ROM mapping */
87 sun3_reserved_pmeg[248] = 1; /* AMD Ethernet */
88 sun3_reserved_pmeg[251] = 1; /* VB area */
89 sun3_reserved_pmeg[254] = 1; /* main I/O */
90
91 sun3_reserved_pmeg[249] = 1;
92 sun3_reserved_pmeg[252] = 1;
93 sun3_reserved_pmeg[253] = 1;
94 set_fs(KERNEL_DS);
95}
96
97/* Without this, Bad Things happen when something calls arch_reset. */
98static void sun3_reboot (void)
99{
100 prom_reboot ("vmlinux");
101}
102
103static void sun3_halt (void)
104{
105 prom_halt ();
106}
107
108/* sun3 bootmem allocation */
109
Adrian Bunk07b81252008-07-17 21:16:27 +0200110static void __init sun3_bootmem_alloc(unsigned long memory_start,
111 unsigned long memory_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 unsigned long start_page;
114
115 /* align start/end to page boundaries */
116 memory_start = ((memory_start + (PAGE_SIZE-1)) & PAGE_MASK);
117 memory_end = memory_end & PAGE_MASK;
118
119 start_page = __pa(memory_start) >> PAGE_SHIFT;
Geert Uytterhoevenc73ec312015-11-15 11:41:14 +0100120 max_pfn = num_pages = __pa(memory_end) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 high_memory = (void *)memory_end;
123 availmem = memory_start;
124
Roman Zippel12d810c2007-05-31 00:40:54 -0700125 m68k_setup_node(0);
Geert Uytterhoevenc73ec312015-11-15 11:41:14 +0100126 availmem += init_bootmem(start_page, num_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 availmem = (availmem + (PAGE_SIZE-1)) & PAGE_MASK;
128
129 free_bootmem(__pa(availmem), memory_end - (availmem));
130}
131
132
133void __init config_sun3(void)
134{
135 unsigned long memory_start, memory_end;
136
137 printk("ARCH: SUN3\n");
138 idprom_init();
139
140 /* Subtract kernel memory from available memory */
141
142 mach_sched_init = sun3_sched_init;
143 mach_init_IRQ = sun3_init_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 mach_reset = sun3_reboot;
Stephen Warrenc8d5ba12012-11-08 11:34:55 -0700145 arch_gettimeoffset = sun3_gettimeoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 mach_get_model = sun3_get_model;
147 mach_hwclk = sun3_hwclk;
148 mach_halt = sun3_halt;
149 mach_get_hardware_list = sun3_get_hardware_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Geert Uytterhoevenc85627f2008-12-21 12:03:37 +0100151 memory_start = ((((unsigned long)_end) + 0x2000) & ~0x1fff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152// PROM seems to want the last couple of physical pages. --m
153 memory_end = *(romvec->pv_sun3mem) + PAGE_OFFSET - 2*PAGE_SIZE;
154
155 m68k_num_memory=1;
156 m68k_memory[0].size=*(romvec->pv_sun3mem);
157
158 sun3_bootmem_alloc(memory_start, memory_end);
159}
160
Adrian Bunk07b81252008-07-17 21:16:27 +0200161static void __init sun3_sched_init(irq_handler_t timer_routine)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 sun3_disable_interrupts();
164 intersil_clock->cmd_reg=(INTERSIL_RUN|INTERSIL_INT_DISABLE|INTERSIL_24H_MODE);
165 intersil_clock->int_reg=INTERSIL_HZ_100_MASK;
166 intersil_clear();
167 sun3_enable_irq(5);
168 intersil_clock->cmd_reg=(INTERSIL_RUN|INTERSIL_INT_ENABLE|INTERSIL_24H_MODE);
169 sun3_enable_interrupts();
170 intersil_clear();
171}
172
Finn Thain2d522612015-12-18 12:44:28 +1100173#if IS_ENABLED(CONFIG_SUN3_SCSI)
Finn Thain0d31f872014-11-13 12:21:28 +1100174
175static const struct resource sun3_scsi_vme_rsrc[] __initconst = {
176 {
177 .flags = IORESOURCE_IRQ,
178 .start = SUN3_VEC_VMESCSI0,
179 .end = SUN3_VEC_VMESCSI0,
180 }, {
181 .flags = IORESOURCE_MEM,
182 .start = 0xff200000,
183 .end = 0xff200021,
184 }, {
185 .flags = IORESOURCE_IRQ,
186 .start = SUN3_VEC_VMESCSI1,
187 .end = SUN3_VEC_VMESCSI1,
188 }, {
189 .flags = IORESOURCE_MEM,
190 .start = 0xff204000,
191 .end = 0xff204021,
192 },
193};
194
195/*
196 * Int: level 2 autovector
197 * IO: type 1, base 0x00140000, 5 bits phys space: A<4..0>
198 */
199static const struct resource sun3_scsi_rsrc[] __initconst = {
200 {
201 .flags = IORESOURCE_IRQ,
202 .start = 2,
203 .end = 2,
204 }, {
205 .flags = IORESOURCE_MEM,
206 .start = 0x00140000,
207 .end = 0x0014001f,
208 },
209};
210
211int __init sun3_platform_init(void)
212{
213 switch (idprom->id_machtype) {
214 case SM_SUN3 | SM_3_160:
215 case SM_SUN3 | SM_3_260:
216 platform_device_register_simple("sun3_scsi_vme", -1,
217 sun3_scsi_vme_rsrc, ARRAY_SIZE(sun3_scsi_vme_rsrc));
218 break;
219 case SM_SUN3 | SM_3_50:
220 case SM_SUN3 | SM_3_60:
221 platform_device_register_simple("sun3_scsi", -1,
222 sun3_scsi_rsrc, ARRAY_SIZE(sun3_scsi_rsrc));
223 break;
224 }
225 return 0;
226}
227
228arch_initcall(sun3_platform_init);
229
230#endif