setup.c 10.3 KB
Newer Older
1 2 3 4 5 6 7
/*
 * Copyright (C) 2007 Atmel Corporation.
 * Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
 *
 * Under GPLv2
 */

8 9
#define pr_fmt(fmt)	"AT91: " fmt

10 11
#include <linux/module.h>
#include <linux/io.h>
12
#include <linux/mm.h>
13
#include <linux/pm.h>
14
#include <linux/of_address.h>
15
#include <linux/pinctrl/machine.h>
16
#include <linux/clk/at91_pmc.h>
17

18
#include <asm/system_misc.h>
19 20 21 22
#include <asm/mach/map.h>

#include <mach/hardware.h>
#include <mach/cpu.h>
23
#include <mach/at91_dbgu.h>
24 25 26

#include "soc.h"
#include "generic.h"
27
#include "pm.h"
28

29 30 31 32 33 34 35 36 37
struct at91_init_soc __initdata at91_boot_soc;

struct at91_socinfo at91_soc_initdata;
EXPORT_SYMBOL(at91_soc_initdata);

void __init at91rm9200_set_type(int type)
{
	if (type == ARCH_REVISON_9200_PQFP)
		at91_soc_initdata.subtype = AT91_SOC_RM9200_PQFP;
38 39 40
	else
		at91_soc_initdata.subtype = AT91_SOC_RM9200_BGA;

41
	pr_info("filled in soc subtype: %s\n",
42
		at91_get_soc_subtype(&at91_soc_initdata));
43
}
44

45 46 47 48 49 50 51 52
void __init at91_init_irq_default(void)
{
	at91_init_interrupts(at91_boot_soc.default_irq_priority);
}

void __init at91_init_interrupts(unsigned int *priority)
{
	/* Initialize the AIC interrupt controller */
53 54
	if (IS_ENABLED(CONFIG_OLD_IRQ_AT91))
		at91_aic_init(priority, at91_boot_soc.extern_irq);
55 56 57 58 59

	/* Enable GPIO interrupts */
	at91_gpio_irq_setup();
}

60
void __iomem *at91_ramc_base[2];
61
EXPORT_SYMBOL_GPL(at91_ramc_base);
62 63 64 65 66 67 68 69 70

void __init at91_ioremap_ramc(int id, u32 addr, u32 size)
{
	if (id < 0 || id > 1) {
		pr_emerg("Wrong RAM controller id (%d), cannot continue\n", id);
		BUG();
	}
	at91_ramc_base[id] = ioremap(addr, size);
	if (!at91_ramc_base[id])
71
		panic(pr_fmt("Impossible to ioremap ramc.%d 0x%x\n"), id, addr);
72 73
}

74 75 76 77 78 79
static struct map_desc sram_desc[2] __initdata;

void __init at91_init_sram(int bank, unsigned long base, unsigned int length)
{
	struct map_desc *desc = &sram_desc[bank];

80
	desc->virtual = (unsigned long)AT91_IO_VIRT_BASE - length;
81 82 83 84 85
	if (bank > 0)
		desc->virtual -= sram_desc[bank - 1].length;

	desc->pfn = __phys_to_pfn(base);
	desc->length = length;
86
	desc->type = MT_MEMORY_RWX_NONCACHED;
87

88
	pr_info("sram at 0x%lx of 0x%x mapped at 0x%lx\n",
89 90 91 92 93
		base, length, desc->virtual);

	iotable_init(desc, 1);
}

94
static struct map_desc at91_io_desc __initdata __maybe_unused = {
95
	.virtual	= (unsigned long)AT91_VA_BASE_SYS,
96 97 98 99 100
	.pfn		= __phys_to_pfn(AT91_BASE_SYS),
	.length		= SZ_16K,
	.type		= MT_DEVICE,
};

101
static void __init soc_detect(u32 dbgu_base)
102
{
103 104 105 106
	u32 cidr, socid;

	cidr = __raw_readl(AT91_IO_P2V(dbgu_base) + AT91_DBGU_CIDR);
	socid = cidr & ~AT91_CIDR_VERSION;
107

108 109 110
	switch (socid) {
	case ARCH_ID_AT91RM9200:
		at91_soc_initdata.type = AT91_SOC_RM9200;
111
		if (at91_soc_initdata.subtype == AT91_SOC_SUBTYPE_UNKNOWN)
112
			at91_soc_initdata.subtype = AT91_SOC_RM9200_BGA;
113
		at91_boot_soc = at91rm9200_soc;
114 115 116 117
		break;

	case ARCH_ID_AT91SAM9260:
		at91_soc_initdata.type = AT91_SOC_SAM9260;
118
		at91_soc_initdata.subtype = AT91_SOC_SUBTYPE_NONE;
119
		at91_boot_soc = at91sam9260_soc;
120 121 122 123
		break;

	case ARCH_ID_AT91SAM9261:
		at91_soc_initdata.type = AT91_SOC_SAM9261;
124
		at91_soc_initdata.subtype = AT91_SOC_SUBTYPE_NONE;
125
		at91_boot_soc = at91sam9261_soc;
126 127 128 129
		break;

	case ARCH_ID_AT91SAM9263:
		at91_soc_initdata.type = AT91_SOC_SAM9263;
130
		at91_soc_initdata.subtype = AT91_SOC_SUBTYPE_NONE;
131
		at91_boot_soc = at91sam9263_soc;
132 133 134 135
		break;

	case ARCH_ID_AT91SAM9G20:
		at91_soc_initdata.type = AT91_SOC_SAM9G20;
136
		at91_soc_initdata.subtype = AT91_SOC_SUBTYPE_NONE;
137
		at91_boot_soc = at91sam9260_soc;
138 139 140 141 142 143
		break;

	case ARCH_ID_AT91SAM9G45:
		at91_soc_initdata.type = AT91_SOC_SAM9G45;
		if (cidr == ARCH_ID_AT91SAM9G45ES)
			at91_soc_initdata.subtype = AT91_SOC_SAM9G45ES;
144
		at91_boot_soc = at91sam9g45_soc;
145 146 147 148
		break;

	case ARCH_ID_AT91SAM9RL64:
		at91_soc_initdata.type = AT91_SOC_SAM9RL;
149
		at91_soc_initdata.subtype = AT91_SOC_SUBTYPE_NONE;
150
		at91_boot_soc = at91sam9rl_soc;
151 152 153 154
		break;

	case ARCH_ID_AT91SAM9X5:
		at91_soc_initdata.type = AT91_SOC_SAM9X5;
155
		at91_boot_soc = at91sam9x5_soc;
156
		break;
157 158 159 160 161

	case ARCH_ID_AT91SAM9N12:
		at91_soc_initdata.type = AT91_SOC_SAM9N12;
		at91_boot_soc = at91sam9n12_soc;
		break;
162 163 164 165 166

	case ARCH_ID_SAMA5D3:
		at91_soc_initdata.type = AT91_SOC_SAMA5D3;
		at91_boot_soc = sama5d3_soc;
		break;
167 168 169
	}

	/* at91sam9g10 */
170
	if ((socid & ~AT91_CIDR_EXT) == ARCH_ID_AT91SAM9G10) {
171
		at91_soc_initdata.type = AT91_SOC_SAM9G10;
172
		at91_soc_initdata.subtype = AT91_SOC_SUBTYPE_NONE;
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
		at91_boot_soc = at91sam9261_soc;
	}
	/* at91sam9xe */
	else if ((cidr & AT91_CIDR_ARCH) == ARCH_FAMILY_AT91SAM9XE) {
		at91_soc_initdata.type = AT91_SOC_SAM9260;
		at91_soc_initdata.subtype = AT91_SOC_SAM9XE;
		at91_boot_soc = at91sam9260_soc;
	}

	if (!at91_soc_is_detected())
		return;

	at91_soc_initdata.cidr = cidr;

	/* sub version of soc */
	at91_soc_initdata.exid = __raw_readl(AT91_IO_P2V(dbgu_base) + AT91_DBGU_EXID);

	if (at91_soc_initdata.type == AT91_SOC_SAM9G45) {
		switch (at91_soc_initdata.exid) {
		case ARCH_EXID_AT91SAM9M10:
			at91_soc_initdata.subtype = AT91_SOC_SAM9M10;
			break;
		case ARCH_EXID_AT91SAM9G46:
			at91_soc_initdata.subtype = AT91_SOC_SAM9G46;
			break;
		case ARCH_EXID_AT91SAM9M11:
			at91_soc_initdata.subtype = AT91_SOC_SAM9M11;
			break;
		}
	}

	if (at91_soc_initdata.type == AT91_SOC_SAM9X5) {
		switch (at91_soc_initdata.exid) {
		case ARCH_EXID_AT91SAM9G15:
			at91_soc_initdata.subtype = AT91_SOC_SAM9G15;
			break;
		case ARCH_EXID_AT91SAM9G35:
			at91_soc_initdata.subtype = AT91_SOC_SAM9G35;
			break;
		case ARCH_EXID_AT91SAM9X35:
			at91_soc_initdata.subtype = AT91_SOC_SAM9X35;
			break;
		case ARCH_EXID_AT91SAM9G25:
			at91_soc_initdata.subtype = AT91_SOC_SAM9G25;
			break;
		case ARCH_EXID_AT91SAM9X25:
			at91_soc_initdata.subtype = AT91_SOC_SAM9X25;
			break;
		}
	}
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237

	if (at91_soc_initdata.type == AT91_SOC_SAMA5D3) {
		switch (at91_soc_initdata.exid) {
		case ARCH_EXID_SAMA5D31:
			at91_soc_initdata.subtype = AT91_SOC_SAMA5D31;
			break;
		case ARCH_EXID_SAMA5D33:
			at91_soc_initdata.subtype = AT91_SOC_SAMA5D33;
			break;
		case ARCH_EXID_SAMA5D34:
			at91_soc_initdata.subtype = AT91_SOC_SAMA5D34;
			break;
		case ARCH_EXID_SAMA5D35:
			at91_soc_initdata.subtype = AT91_SOC_SAMA5D35;
			break;
238 239 240
		case ARCH_EXID_SAMA5D36:
			at91_soc_initdata.subtype = AT91_SOC_SAMA5D36;
			break;
241 242
		}
	}
243 244 245 246 247 248 249 250 251 252 253 254
}

static const char *soc_name[] = {
	[AT91_SOC_RM9200]	= "at91rm9200",
	[AT91_SOC_SAM9260]	= "at91sam9260",
	[AT91_SOC_SAM9261]	= "at91sam9261",
	[AT91_SOC_SAM9263]	= "at91sam9263",
	[AT91_SOC_SAM9G10]	= "at91sam9g10",
	[AT91_SOC_SAM9G20]	= "at91sam9g20",
	[AT91_SOC_SAM9G45]	= "at91sam9g45",
	[AT91_SOC_SAM9RL]	= "at91sam9rl",
	[AT91_SOC_SAM9X5]	= "at91sam9x5",
255
	[AT91_SOC_SAM9N12]	= "at91sam9n12",
256
	[AT91_SOC_SAMA5D3]	= "sama5d3",
257
	[AT91_SOC_UNKNOWN]	= "Unknown",
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
};

const char *at91_get_soc_type(struct at91_socinfo *c)
{
	return soc_name[c->type];
}
EXPORT_SYMBOL(at91_get_soc_type);

static const char *soc_subtype_name[] = {
	[AT91_SOC_RM9200_BGA]	= "at91rm9200 BGA",
	[AT91_SOC_RM9200_PQFP]	= "at91rm9200 PQFP",
	[AT91_SOC_SAM9XE]	= "at91sam9xe",
	[AT91_SOC_SAM9G45ES]	= "at91sam9g45es",
	[AT91_SOC_SAM9M10]	= "at91sam9m10",
	[AT91_SOC_SAM9G46]	= "at91sam9g46",
	[AT91_SOC_SAM9M11]	= "at91sam9m11",
	[AT91_SOC_SAM9G15]	= "at91sam9g15",
	[AT91_SOC_SAM9G35]	= "at91sam9g35",
	[AT91_SOC_SAM9X35]	= "at91sam9x35",
	[AT91_SOC_SAM9G25]	= "at91sam9g25",
	[AT91_SOC_SAM9X25]	= "at91sam9x25",
279 280 281 282
	[AT91_SOC_SAMA5D31]	= "sama5d31",
	[AT91_SOC_SAMA5D33]	= "sama5d33",
	[AT91_SOC_SAMA5D34]	= "sama5d34",
	[AT91_SOC_SAMA5D35]	= "sama5d35",
283
	[AT91_SOC_SAMA5D36]	= "sama5d36",
284 285
	[AT91_SOC_SUBTYPE_NONE]	= "None",
	[AT91_SOC_SUBTYPE_UNKNOWN] = "Unknown",
286 287 288 289 290 291 292 293 294 295 296 297 298
};

const char *at91_get_soc_subtype(struct at91_socinfo *c)
{
	return soc_subtype_name[c->subtype];
}
EXPORT_SYMBOL(at91_get_soc_subtype);

void __init at91_map_io(void)
{
	/* Map peripherals */
	iotable_init(&at91_io_desc, 1);

299 300
	at91_soc_initdata.type = AT91_SOC_UNKNOWN;
	at91_soc_initdata.subtype = AT91_SOC_SUBTYPE_UNKNOWN;
301

302
	soc_detect(AT91_BASE_DBGU0);
303
	if (!at91_soc_is_detected())
304
		soc_detect(AT91_BASE_DBGU1);
305 306

	if (!at91_soc_is_detected())
307
		panic(pr_fmt("Impossible to detect the SOC type"));
308

309
	pr_info("Detected soc type: %s\n",
310
		at91_get_soc_type(&at91_soc_initdata));
311
	if (at91_soc_initdata.subtype != AT91_SOC_SUBTYPE_NONE)
312
		pr_info("Detected soc subtype: %s\n",
313
			at91_get_soc_subtype(&at91_soc_initdata));
314 315

	if (!at91_soc_is_enabled())
316
		panic(pr_fmt("Soc not enabled"));
317 318 319 320 321

	if (at91_boot_soc.map_io)
		at91_boot_soc.map_io();
}

322
void __iomem *at91_matrix_base;
323
EXPORT_SYMBOL_GPL(at91_matrix_base);
324 325 326 327 328

void __init at91_ioremap_matrix(u32 base_addr)
{
	at91_matrix_base = ioremap(base_addr, 512);
	if (!at91_matrix_base)
329
		panic(pr_fmt("Impossible to ioremap at91_matrix_base\n"));
330 331
}

332
#if defined(CONFIG_OF) && !defined(CONFIG_ARCH_AT91X40)
333
static struct of_device_id ramc_ids[] = {
334 335 336
	{ .compatible = "atmel,at91rm9200-sdramc", .data = at91rm9200_standby },
	{ .compatible = "atmel,at91sam9260-sdramc", .data = at91sam9_sdram_standby },
	{ .compatible = "atmel,at91sam9g45-ddramc", .data = at91_ddr_standby },
337
	{ .compatible = "atmel,sama5d3-ddramc", .data = at91_ddr_standby },
338 339 340 341 342 343
	{ /*sentinel*/ }
};

static void at91_dt_ramc(void)
{
	struct device_node *np;
344
	const struct of_device_id *of_id;
345
	int idx = 0;
346
	const void *standby = NULL;
347

348
	for_each_matching_node_and_match(np, ramc_ids, &of_id) {
349 350 351
		at91_ramc_base[idx] = of_iomap(np, 0);
		if (!at91_ramc_base[idx])
			panic(pr_fmt("unable to map ramc[%d] cpu registers\n"), idx);
352

353 354 355
		if (!standby)
			standby = of_id->data;

356 357 358 359 360
		idx++;
	}

	if (!idx)
		panic(pr_fmt("unable to find compatible ram controller node in dtb\n"));
361

362
	if (!standby) {
363
		pr_warn("ramc no standby function available\n");
364 365
		return;
	}
366

367
	at91_pm_set_standby(standby);
368 369
}

370 371 372 373 374 375 376 377
void __init at91rm9200_dt_initialize(void)
{
	at91_dt_ramc();

	/* Init clock subsystem */
	at91_dt_clock_init();

	/* Register the processor-specific clocks */
378 379
	if (at91_boot_soc.register_clocks)
		at91_boot_soc.register_clocks();
380 381 382 383

	at91_boot_soc.init();
}

384 385
void __init at91_dt_initialize(void)
{
386
	at91_dt_ramc();
387 388

	/* Init clock subsystem */
389
	at91_dt_clock_init();
390 391

	/* Register the processor-specific clocks */
392 393
	if (at91_boot_soc.register_clocks)
		at91_boot_soc.register_clocks();
394

395 396
	if (at91_boot_soc.init)
		at91_boot_soc.init();
397 398 399
}
#endif

400 401
void __init at91_initialize(unsigned long main_clock)
{
402 403
	at91_boot_soc.ioremap_registers();

404 405 406
	/* Init clock subsystem */
	at91_clock_init(main_clock);

407 408 409
	/* Register the processor-specific clocks */
	at91_boot_soc.register_clocks();

410
	at91_boot_soc.init();
411 412

	pinctrl_provide_dummies();
413
}
414 415 416 417 418

void __init at91_register_devices(void)
{
	at91_boot_soc.register_devices();
}