malta-setup.c 8.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * Carsten Langgaard, carstenl@mips.com
 * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
4
 * Copyright (C) 2008 Dmitri Vorobiev
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 *  This program is free software; you can distribute it and/or modify it
 *  under the terms of the GNU General Public License (Version 2) as
 *  published by the Free Software Foundation.
 *
 *  This program is distributed in the hope it will be useful, but WITHOUT
 *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 *  for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
 */
19
#include <linux/cpu.h>
L
Linus Torvalds 已提交
20 21 22
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/ioport.h>
23
#include <linux/irq.h>
P
Paul Burton 已提交
24
#include <linux/of_fdt.h>
L
Linus Torvalds 已提交
25
#include <linux/pci.h>
26
#include <linux/screen_info.h>
27
#include <linux/time.h>
L
Linus Torvalds 已提交
28

29
#include <asm/fw/fw.h>
30
#include <asm/mach-malta/malta-dtshim.h>
31
#include <asm/mips-cm.h>
L
Linus Torvalds 已提交
32 33 34 35
#include <asm/mips-boards/generic.h>
#include <asm/mips-boards/malta.h>
#include <asm/mips-boards/maltaint.h>
#include <asm/dma.h>
P
Paul Burton 已提交
36
#include <asm/prom.h>
L
Linus Torvalds 已提交
37 38 39 40 41
#include <asm/traps.h>
#ifdef CONFIG_VT
#include <linux/console.h>
#endif

42 43 44
#define ROCIT_CONFIG_GEN0		0x1f403000
#define  ROCIT_CONFIG_GEN0_PCI_IOCU	BIT(7)

45 46 47
extern void malta_be_init(void);
extern int malta_be_handler(struct pt_regs *regs, int is_fixup);

48
static struct resource standard_io_resources[] = {
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
	{
		.name = "dma1",
		.start = 0x00,
		.end = 0x1f,
		.flags = IORESOURCE_BUSY
	},
	{
		.name = "timer",
		.start = 0x40,
		.end = 0x5f,
		.flags = IORESOURCE_BUSY
	},
	{
		.name = "keyboard",
		.start = 0x60,
		.end = 0x6f,
		.flags = IORESOURCE_BUSY
	},
	{
		.name = "dma page reg",
		.start = 0x80,
		.end = 0x8f,
		.flags = IORESOURCE_BUSY
	},
	{
		.name = "dma2",
		.start = 0xc0,
		.end = 0xdf,
		.flags = IORESOURCE_BUSY
	},
L
Linus Torvalds 已提交
79 80 81 82 83 84 85
};

const char *get_system_type(void)
{
	return "MIPS Malta";
}

R
Ralf Baechle 已提交
86
const char display_string[] = "	       LINUX ON MALTA	    ";
87

L
Linus Torvalds 已提交
88
#ifdef CONFIG_BLK_DEV_FD
89
static void __init fd_activate(void)
L
Linus Torvalds 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
{
	/*
	 * Activate Floppy Controller in the SMSC FDC37M817 Super I/O
	 * Controller.
	 * Done by YAMON 2.00 onwards
	 */
	/* Entering config state. */
	SMSC_WRITE(SMSC_CONFIG_ENTER, SMSC_CONFIG_REG);

	/* Activate floppy controller. */
	SMSC_WRITE(SMSC_CONFIG_DEVNUM, SMSC_CONFIG_REG);
	SMSC_WRITE(SMSC_CONFIG_DEVNUM_FLOPPY, SMSC_DATA_REG);
	SMSC_WRITE(SMSC_CONFIG_ACTIVATE, SMSC_CONFIG_REG);
	SMSC_WRITE(SMSC_CONFIG_ACTIVATE_ENABLE, SMSC_DATA_REG);

	/* Exit config state. */
	SMSC_WRITE(SMSC_CONFIG_EXIT, SMSC_CONFIG_REG);
}
#endif

110 111 112
static int __init plat_enable_iocoherency(void)
{
	int supported = 0;
113 114
	u32 cfg;

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
	if (mips_revision_sconid == MIPS_REVISION_SCON_BONITO) {
		if (BONITO_PCICACHECTRL & BONITO_PCICACHECTRL_CPUCOH_PRES) {
			BONITO_PCICACHECTRL |= BONITO_PCICACHECTRL_CPUCOH_EN;
			pr_info("Enabled Bonito CPU coherency\n");
			supported = 1;
		}
		if (strstr(fw_getcmdline(), "iobcuncached")) {
			BONITO_PCICACHECTRL &= ~BONITO_PCICACHECTRL_IOBCCOH_EN;
			BONITO_PCIMEMBASECFG = BONITO_PCIMEMBASECFG &
				~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
				  BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
			pr_info("Disabled Bonito IOBC coherency\n");
		} else {
			BONITO_PCICACHECTRL |= BONITO_PCICACHECTRL_IOBCCOH_EN;
			BONITO_PCIMEMBASECFG |=
				(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
				 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
			pr_info("Enabled Bonito IOBC coherency\n");
		}
134
	} else if (mips_cm_numiocu() != 0) {
135 136
		/* Nothing special needs to be done to enable coherency */
		pr_info("CMP IOCU detected\n");
137 138
		cfg = __raw_readl((u32 *)CKSEG1ADDR(ROCIT_CONFIG_GEN0));
		if (!(cfg & ROCIT_CONFIG_GEN0_PCI_IOCU)) {
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
			pr_crit("IOCU OPERATION DISABLED BY SWITCH - DEFAULTING TO SW IO COHERENCY\n");
			return 0;
		}
		supported = 1;
	}
	hw_coherentio = supported;
	return supported;
}

static void __init plat_setup_iocoherency(void)
{
#ifdef CONFIG_DMA_NONCOHERENT
	/*
	 * Kernel has been configured with software coherency
	 * but we might choose to turn it off and use hardware
	 * coherency instead.
	 */
	if (plat_enable_iocoherency()) {
		if (coherentio == 0)
			pr_info("Hardware DMA cache coherency disabled\n");
		else
			pr_info("Hardware DMA cache coherency enabled\n");
	} else {
		if (coherentio == 1)
			pr_info("Hardware DMA cache coherency unsupported, but enabled from command line!\n");
		else
			pr_info("Software DMA cache coherency enabled\n");
	}
#else
	if (!plat_enable_iocoherency())
		panic("Hardware DMA cache coherency not supported!");
#endif
}

173 174 175 176 177
static void __init pci_clock_check(void)
{
	unsigned int __iomem *jmpr_p =
		(unsigned int *) ioremap(MALTA_JMPRS_REG, sizeof(unsigned int));
	int jmpr = (__raw_readl(jmpr_p) >> 2) & 0x07;
178
	static const int pciclocks[] __initconst = {
179 180 181
		33, 20, 25, 30, 12, 16, 37, 10
	};
	int pciclock = pciclocks[jmpr];
182
	char *optptr, *argptr = fw_getcmdline();
183

184 185 186 187 188 189 190 191 192
	/*
	 * If user passed a pci_clock= option, don't tack on another one
	 */
	optptr = strstr(argptr, "pci_clock=");
	if (optptr && (optptr == argptr || optptr[-1] == ' '))
		return;

	if (pciclock != 33) {
		pr_warn("WARNING: PCI clock is %dMHz, setting pci_clock\n",
193
			pciclock);
194
		argptr += strlen(argptr);
195
		sprintf(argptr, " pci_clock=%d", pciclock);
196
		if (pciclock < 20 || pciclock > 66)
197 198
			pr_warn("WARNING: IDE timing calculations will be "
			        "incorrect\n");
199 200 201
	}
}

202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
#if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
static void __init screen_info_setup(void)
{
	screen_info = (struct screen_info) {
		.orig_x = 0,
		.orig_y = 25,
		.ext_mem_k = 0,
		.orig_video_page = 0,
		.orig_video_mode = 0,
		.orig_video_cols = 80,
		.unused2 = 0,
		.orig_video_ega_bx = 0,
		.unused3 = 0,
		.orig_video_lines = 25,
		.orig_video_isVGA = VIDEO_TYPE_VGAC,
		.orig_video_points = 16
	};
}
#endif

222 223 224 225
static void __init bonito_quirks_setup(void)
{
	char *argptr;

226
	argptr = fw_getcmdline();
227 228
	if (strstr(argptr, "debug")) {
		BONITO_BONGENCFG |= BONITO_BONGENCFG_DEBUGMODE;
229
		pr_info("Enabled Bonito debug mode\n");
230 231 232 233 234 235
	} else
		BONITO_BONGENCFG &= ~BONITO_BONGENCFG_DEBUGMODE;

#ifdef CONFIG_DMA_COHERENT
	if (BONITO_PCICACHECTRL & BONITO_PCICACHECTRL_CPUCOH_PRES) {
		BONITO_PCICACHECTRL |= BONITO_PCICACHECTRL_CPUCOH_EN;
236
		pr_info("Enabled Bonito CPU coherency\n");
237

238
		argptr = fw_getcmdline();
239 240 241 242 243
		if (strstr(argptr, "iobcuncached")) {
			BONITO_PCICACHECTRL &= ~BONITO_PCICACHECTRL_IOBCCOH_EN;
			BONITO_PCIMEMBASECFG = BONITO_PCIMEMBASECFG &
				~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
					BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
244
			pr_info("Disabled Bonito IOBC coherency\n");
245 246 247 248 249
		} else {
			BONITO_PCICACHECTRL |= BONITO_PCICACHECTRL_IOBCCOH_EN;
			BONITO_PCIMEMBASECFG |=
				(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
					BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
250
			pr_info("Enabled Bonito IOBC coherency\n");
251 252 253 254 255 256
		}
	} else
		panic("Hardware DMA cache coherency not supported");
#endif
}

257 258 259 260 261
void __init *plat_get_fdt(void)
{
	return (void *)__dtb_start;
}

262
void __init plat_mem_setup(void)
L
Linus Torvalds 已提交
263 264
{
	unsigned int i;
265
	void *fdt = plat_get_fdt();
L
Linus Torvalds 已提交
266

267 268
	fdt = malta_dt_shim(fdt);
	__dt_setup_arch(fdt);
P
Paul Burton 已提交
269

270
	if (IS_ENABLED(CONFIG_EVA))
271 272 273
		/* EVA has already been configured in mach-malta/kernel-init.h */
		pr_info("Enhanced Virtual Addressing (EVA) activated\n");

274 275
	mips_pcibios_init();

L
Linus Torvalds 已提交
276 277 278 279 280 281 282 283 284 285
	/* Request I/O space for devices used on the Malta board. */
	for (i = 0; i < ARRAY_SIZE(standard_io_resources); i++)
		request_resource(&ioport_resource, standard_io_resources+i);

	/*
	 * Enable DMA channel 4 (cascade channel) in the PIIX4 south bridge.
	 */
	enable_dma(4);

#ifdef CONFIG_DMA_COHERENT
286
	if (mips_revision_sconid != MIPS_REVISION_SCON_BONITO)
L
Linus Torvalds 已提交
287 288 289
		panic("Hardware DMA cache coherency not supported");
#endif

290 291 292
	if (mips_revision_sconid == MIPS_REVISION_SCON_BONITO)
		bonito_quirks_setup();

293 294
	plat_setup_iocoherency();

295
	pci_clock_check();
296

L
Linus Torvalds 已提交
297
#ifdef CONFIG_BLK_DEV_FD
298
	fd_activate();
L
Linus Torvalds 已提交
299
#endif
300

301 302
#if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
	screen_info_setup();
L
Linus Torvalds 已提交
303
#endif
304 305 306

	board_be_init = malta_be_init;
	board_be_handler = malta_be_handler;
L
Linus Torvalds 已提交
307
}