at32ap700x.c 53.5 KB
Newer Older
H
Haavard Skinnemoen 已提交
1 2 3 4 5 6 7 8
/*
 * Copyright (C) 2005-2006 Atmel Corporation
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include <linux/clk.h>
9
#include <linux/delay.h>
10
#include <linux/dw_dmac.h>
11
#include <linux/fb.h>
H
Haavard Skinnemoen 已提交
12 13
#include <linux/init.h>
#include <linux/platform_device.h>
14
#include <linux/dma-mapping.h>
15
#include <linux/slab.h>
D
David Brownell 已提交
16
#include <linux/gpio.h>
17
#include <linux/spi/spi.h>
18
#include <linux/usb/atmel_usba_udc.h>
19 20

#include <mach/atmel-mci.h>
21
#include <linux/atmel-mci.h>
H
Haavard Skinnemoen 已提交
22 23

#include <asm/io.h>
H
Haavard Skinnemoen 已提交
24
#include <asm/irq.h>
H
Haavard Skinnemoen 已提交
25

26 27
#include <mach/at32ap700x.h>
#include <mach/board.h>
28
#include <mach/hmatrix.h>
29 30
#include <mach/portmux.h>
#include <mach/sram.h>
H
Haavard Skinnemoen 已提交
31

32
#include <sound/atmel-abdac.h>
33
#include <sound/atmel-ac97c.h>
34

35 36
#include <video/atmel_lcdc.h>

H
Haavard Skinnemoen 已提交
37 38
#include "clock.h"
#include "pio.h"
39 40
#include "pm.h"

H
Haavard Skinnemoen 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61

#define PBMEM(base)					\
	{						\
		.start		= base,			\
		.end		= base + 0x3ff,		\
		.flags		= IORESOURCE_MEM,	\
	}
#define IRQ(num)					\
	{						\
		.start		= num,			\
		.end		= num,			\
		.flags		= IORESOURCE_IRQ,	\
	}
#define NAMED_IRQ(num, _name)				\
	{						\
		.start		= num,			\
		.end		= num,			\
		.name		= _name,		\
		.flags		= IORESOURCE_IRQ,	\
	}

62 63 64
/* REVISIT these assume *every* device supports DMA, but several
 * don't ... tc, smc, pio, rtc, watchdog, pwm, ps2, and more.
 */
H
Haavard Skinnemoen 已提交
65
#define DEFINE_DEV(_name, _id)					\
66
static u64 _name##_id##_dma_mask = DMA_BIT_MASK(32);		\
H
Haavard Skinnemoen 已提交
67 68 69
static struct platform_device _name##_id##_device = {		\
	.name		= #_name,				\
	.id		= _id,					\
70 71
	.dev		= {					\
		.dma_mask = &_name##_id##_dma_mask,		\
72
		.coherent_dma_mask = DMA_BIT_MASK(32),		\
73
	},							\
H
Haavard Skinnemoen 已提交
74 75 76 77
	.resource	= _name##_id##_resource,		\
	.num_resources	= ARRAY_SIZE(_name##_id##_resource),	\
}
#define DEFINE_DEV_DATA(_name, _id)				\
78
static u64 _name##_id##_dma_mask = DMA_BIT_MASK(32);		\
H
Haavard Skinnemoen 已提交
79 80 81 82
static struct platform_device _name##_id##_device = {		\
	.name		= #_name,				\
	.id		= _id,					\
	.dev		= {					\
83
		.dma_mask = &_name##_id##_dma_mask,		\
H
Haavard Skinnemoen 已提交
84
		.platform_data	= &_name##_id##_data,		\
85
		.coherent_dma_mask = DMA_BIT_MASK(32),		\
H
Haavard Skinnemoen 已提交
86 87 88 89 90
	},							\
	.resource	= _name##_id##_resource,		\
	.num_resources	= ARRAY_SIZE(_name##_id##_resource),	\
}

91 92 93
#define select_peripheral(port, pin_mask, periph, flags)	\
	at32_select_periph(GPIO_##port##_BASE, pin_mask,	\
			   GPIO_##periph, flags)
H
Haavard Skinnemoen 已提交
94

H
Haavard Skinnemoen 已提交
95 96 97 98 99 100 101 102 103 104
#define DEV_CLK(_name, devname, bus, _index)			\
static struct clk devname##_##_name = {				\
	.name		= #_name,				\
	.dev		= &devname##_device.dev,		\
	.parent		= &bus##_clk,				\
	.mode		= bus##_clk_mode,			\
	.get_rate	= bus##_clk_get_rate,			\
	.index		= _index,				\
}

105 106
static DEFINE_SPINLOCK(pm_lock);

107 108 109
static struct clk osc0;
static struct clk osc1;

H
Haavard Skinnemoen 已提交
110 111
static unsigned long osc_get_rate(struct clk *clk)
{
112
	return at32_board_osc_rates[clk->index];
H
Haavard Skinnemoen 已提交
113 114 115 116 117 118
}

static unsigned long pll_get_rate(struct clk *clk, unsigned long control)
{
	unsigned long div, mul, rate;

119 120
	div = PM_BFEXT(PLLDIV, control) + 1;
	mul = PM_BFEXT(PLLMUL, control) + 1;
H
Haavard Skinnemoen 已提交
121 122 123 124 125 126 127 128

	rate = clk->parent->get_rate(clk->parent);
	rate = (rate + div / 2) / div;
	rate *= mul;

	return rate;
}

129 130 131 132 133 134 135 136 137 138 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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
static long pll_set_rate(struct clk *clk, unsigned long rate,
			 u32 *pll_ctrl)
{
	unsigned long mul;
	unsigned long mul_best_fit = 0;
	unsigned long div;
	unsigned long div_min;
	unsigned long div_max;
	unsigned long div_best_fit = 0;
	unsigned long base;
	unsigned long pll_in;
	unsigned long actual = 0;
	unsigned long rate_error;
	unsigned long rate_error_prev = ~0UL;
	u32 ctrl;

	/* Rate must be between 80 MHz and 200 Mhz. */
	if (rate < 80000000UL || rate > 200000000UL)
		return -EINVAL;

	ctrl = PM_BF(PLLOPT, 4);
	base = clk->parent->get_rate(clk->parent);

	/* PLL input frequency must be between 6 MHz and 32 MHz. */
	div_min = DIV_ROUND_UP(base, 32000000UL);
	div_max = base / 6000000UL;

	if (div_max < div_min)
		return -EINVAL;

	for (div = div_min; div <= div_max; div++) {
		pll_in = (base + div / 2) / div;
		mul = (rate + pll_in / 2) / pll_in;

		if (mul == 0)
			continue;

		actual = pll_in * mul;
		rate_error = abs(actual - rate);

		if (rate_error < rate_error_prev) {
			mul_best_fit = mul;
			div_best_fit = div;
			rate_error_prev = rate_error;
		}

		if (rate_error == 0)
			break;
	}

	if (div_best_fit == 0)
		return -EINVAL;

	ctrl |= PM_BF(PLLMUL, mul_best_fit - 1);
	ctrl |= PM_BF(PLLDIV, div_best_fit - 1);
	ctrl |= PM_BF(PLLCOUNT, 16);

	if (clk->parent == &osc1)
		ctrl |= PM_BIT(PLLOSC);

	*pll_ctrl = ctrl;

	return actual;
}

H
Haavard Skinnemoen 已提交
194 195 196 197
static unsigned long pll0_get_rate(struct clk *clk)
{
	u32 control;

198
	control = pm_readl(PLL0);
H
Haavard Skinnemoen 已提交
199 200 201 202

	return pll_get_rate(clk, control);
}

203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
static void pll1_mode(struct clk *clk, int enabled)
{
	unsigned long timeout;
	u32 status;
	u32 ctrl;

	ctrl = pm_readl(PLL1);

	if (enabled) {
		if (!PM_BFEXT(PLLMUL, ctrl) && !PM_BFEXT(PLLDIV, ctrl)) {
			pr_debug("clk %s: failed to enable, rate not set\n",
					clk->name);
			return;
		}

		ctrl |= PM_BIT(PLLEN);
		pm_writel(PLL1, ctrl);

		/* Wait for PLL lock. */
		for (timeout = 10000; timeout; timeout--) {
			status = pm_readl(ISR);
			if (status & PM_BIT(LOCK1))
				break;
			udelay(10);
		}

		if (!(status & PM_BIT(LOCK1)))
			printk(KERN_ERR "clk %s: timeout waiting for lock\n",
					clk->name);
	} else {
		ctrl &= ~PM_BIT(PLLEN);
		pm_writel(PLL1, ctrl);
	}
}

H
Haavard Skinnemoen 已提交
238 239 240 241
static unsigned long pll1_get_rate(struct clk *clk)
{
	u32 control;

242
	control = pm_readl(PLL1);
H
Haavard Skinnemoen 已提交
243 244 245 246

	return pll_get_rate(clk, control);
}

247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
static long pll1_set_rate(struct clk *clk, unsigned long rate, int apply)
{
	u32 ctrl = 0;
	unsigned long actual_rate;

	actual_rate = pll_set_rate(clk, rate, &ctrl);

	if (apply) {
		if (actual_rate != rate)
			return -EINVAL;
		if (clk->users > 0)
			return -EBUSY;
		pr_debug(KERN_INFO "clk %s: new rate %lu (actual rate %lu)\n",
				clk->name, rate, actual_rate);
		pm_writel(PLL1, ctrl);
	}

	return actual_rate;
}

static int pll1_set_parent(struct clk *clk, struct clk *parent)
{
	u32 ctrl;

	if (clk->users > 0)
		return -EBUSY;

	ctrl = pm_readl(PLL1);
	WARN_ON(ctrl & PM_BIT(PLLEN));

	if (parent == &osc0)
		ctrl &= ~PM_BIT(PLLOSC);
	else if (parent == &osc1)
		ctrl |= PM_BIT(PLLOSC);
	else
		return -EINVAL;

	pm_writel(PLL1, ctrl);
	clk->parent = parent;

	return 0;
}

H
Haavard Skinnemoen 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
/*
 * The AT32AP7000 has five primary clock sources: One 32kHz
 * oscillator, two crystal oscillators and two PLLs.
 */
static struct clk osc32k = {
	.name		= "osc32k",
	.get_rate	= osc_get_rate,
	.users		= 1,
	.index		= 0,
};
static struct clk osc0 = {
	.name		= "osc0",
	.get_rate	= osc_get_rate,
	.users		= 1,
	.index		= 1,
};
static struct clk osc1 = {
	.name		= "osc1",
	.get_rate	= osc_get_rate,
	.index		= 2,
};
static struct clk pll0 = {
	.name		= "pll0",
	.get_rate	= pll0_get_rate,
	.parent		= &osc0,
};
static struct clk pll1 = {
	.name		= "pll1",
318
	.mode		= pll1_mode,
H
Haavard Skinnemoen 已提交
319
	.get_rate	= pll1_get_rate,
320 321
	.set_rate	= pll1_set_rate,
	.set_parent	= pll1_set_parent,
H
Haavard Skinnemoen 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
	.parent		= &osc0,
};

/*
 * The main clock can be either osc0 or pll0.  The boot loader may
 * have chosen one for us, so we don't really know which one until we
 * have a look at the SM.
 */
static struct clk *main_clock;

/*
 * Synchronous clocks are generated from the main clock. The clocks
 * must satisfy the constraint
 *   fCPU >= fHSB >= fPB
 * i.e. each clock must not be faster than its parent.
 */
static unsigned long bus_clk_get_rate(struct clk *clk, unsigned int shift)
{
	return main_clock->get_rate(main_clock) >> shift;
};

static void cpu_clk_mode(struct clk *clk, int enabled)
{
	unsigned long flags;
	u32 mask;

348 349
	spin_lock_irqsave(&pm_lock, flags);
	mask = pm_readl(CPU_MASK);
H
Haavard Skinnemoen 已提交
350 351 352 353
	if (enabled)
		mask |= 1 << clk->index;
	else
		mask &= ~(1 << clk->index);
354 355
	pm_writel(CPU_MASK, mask);
	spin_unlock_irqrestore(&pm_lock, flags);
H
Haavard Skinnemoen 已提交
356 357 358 359 360 361
}

static unsigned long cpu_clk_get_rate(struct clk *clk)
{
	unsigned long cksel, shift = 0;

362 363 364
	cksel = pm_readl(CKSEL);
	if (cksel & PM_BIT(CPUDIV))
		shift = PM_BFEXT(CPUSEL, cksel) + 1;
H
Haavard Skinnemoen 已提交
365 366 367 368

	return bus_clk_get_rate(clk, shift);
}

369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
static long cpu_clk_set_rate(struct clk *clk, unsigned long rate, int apply)
{
	u32 control;
	unsigned long parent_rate, child_div, actual_rate, div;

	parent_rate = clk->parent->get_rate(clk->parent);
	control = pm_readl(CKSEL);

	if (control & PM_BIT(HSBDIV))
		child_div = 1 << (PM_BFEXT(HSBSEL, control) + 1);
	else
		child_div = 1;

	if (rate > 3 * (parent_rate / 4) || child_div == 1) {
		actual_rate = parent_rate;
		control &= ~PM_BIT(CPUDIV);
	} else {
		unsigned int cpusel;
		div = (parent_rate + rate / 2) / rate;
		if (div > child_div)
			div = child_div;
		cpusel = (div > 1) ? (fls(div) - 2) : 0;
		control = PM_BIT(CPUDIV) | PM_BFINS(CPUSEL, cpusel, control);
		actual_rate = parent_rate / (1 << (cpusel + 1));
	}

	pr_debug("clk %s: new rate %lu (actual rate %lu)\n",
			clk->name, rate, actual_rate);

	if (apply)
		pm_writel(CKSEL, control);

	return actual_rate;
}

H
Haavard Skinnemoen 已提交
404 405 406 407 408
static void hsb_clk_mode(struct clk *clk, int enabled)
{
	unsigned long flags;
	u32 mask;

409 410
	spin_lock_irqsave(&pm_lock, flags);
	mask = pm_readl(HSB_MASK);
H
Haavard Skinnemoen 已提交
411 412 413 414
	if (enabled)
		mask |= 1 << clk->index;
	else
		mask &= ~(1 << clk->index);
415 416
	pm_writel(HSB_MASK, mask);
	spin_unlock_irqrestore(&pm_lock, flags);
H
Haavard Skinnemoen 已提交
417 418 419 420 421 422
}

static unsigned long hsb_clk_get_rate(struct clk *clk)
{
	unsigned long cksel, shift = 0;

423 424 425
	cksel = pm_readl(CKSEL);
	if (cksel & PM_BIT(HSBDIV))
		shift = PM_BFEXT(HSBSEL, cksel) + 1;
H
Haavard Skinnemoen 已提交
426 427 428 429

	return bus_clk_get_rate(clk, shift);
}

A
Alex Raimondi 已提交
430
void pba_clk_mode(struct clk *clk, int enabled)
H
Haavard Skinnemoen 已提交
431 432 433 434
{
	unsigned long flags;
	u32 mask;

435 436
	spin_lock_irqsave(&pm_lock, flags);
	mask = pm_readl(PBA_MASK);
H
Haavard Skinnemoen 已提交
437 438 439 440
	if (enabled)
		mask |= 1 << clk->index;
	else
		mask &= ~(1 << clk->index);
441 442
	pm_writel(PBA_MASK, mask);
	spin_unlock_irqrestore(&pm_lock, flags);
H
Haavard Skinnemoen 已提交
443 444
}

A
Alex Raimondi 已提交
445
unsigned long pba_clk_get_rate(struct clk *clk)
H
Haavard Skinnemoen 已提交
446 447 448
{
	unsigned long cksel, shift = 0;

449 450 451
	cksel = pm_readl(CKSEL);
	if (cksel & PM_BIT(PBADIV))
		shift = PM_BFEXT(PBASEL, cksel) + 1;
H
Haavard Skinnemoen 已提交
452 453 454 455 456 457 458 459 460

	return bus_clk_get_rate(clk, shift);
}

static void pbb_clk_mode(struct clk *clk, int enabled)
{
	unsigned long flags;
	u32 mask;

461 462
	spin_lock_irqsave(&pm_lock, flags);
	mask = pm_readl(PBB_MASK);
H
Haavard Skinnemoen 已提交
463 464 465 466
	if (enabled)
		mask |= 1 << clk->index;
	else
		mask &= ~(1 << clk->index);
467 468
	pm_writel(PBB_MASK, mask);
	spin_unlock_irqrestore(&pm_lock, flags);
H
Haavard Skinnemoen 已提交
469 470 471 472 473 474
}

static unsigned long pbb_clk_get_rate(struct clk *clk)
{
	unsigned long cksel, shift = 0;

475 476 477
	cksel = pm_readl(CKSEL);
	if (cksel & PM_BIT(PBBDIV))
		shift = PM_BFEXT(PBBSEL, cksel) + 1;
H
Haavard Skinnemoen 已提交
478 479 480 481 482 483 484

	return bus_clk_get_rate(clk, shift);
}

static struct clk cpu_clk = {
	.name		= "cpu",
	.get_rate	= cpu_clk_get_rate,
485
	.set_rate	= cpu_clk_set_rate,
H
Haavard Skinnemoen 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
	.users		= 1,
};
static struct clk hsb_clk = {
	.name		= "hsb",
	.parent		= &cpu_clk,
	.get_rate	= hsb_clk_get_rate,
};
static struct clk pba_clk = {
	.name		= "pba",
	.parent		= &hsb_clk,
	.mode		= hsb_clk_mode,
	.get_rate	= pba_clk_get_rate,
	.index		= 1,
};
static struct clk pbb_clk = {
	.name		= "pbb",
	.parent		= &hsb_clk,
	.mode		= hsb_clk_mode,
	.get_rate	= pbb_clk_get_rate,
	.users		= 1,
	.index		= 2,
};

/* --------------------------------------------------------------------
 *  Generic Clock operations
 * -------------------------------------------------------------------- */

static void genclk_mode(struct clk *clk, int enabled)
{
	u32 control;

517
	control = pm_readl(GCCTRL(clk->index));
H
Haavard Skinnemoen 已提交
518
	if (enabled)
519
		control |= PM_BIT(CEN);
H
Haavard Skinnemoen 已提交
520
	else
521 522
		control &= ~PM_BIT(CEN);
	pm_writel(GCCTRL(clk->index), control);
H
Haavard Skinnemoen 已提交
523 524 525 526 527 528 529
}

static unsigned long genclk_get_rate(struct clk *clk)
{
	u32 control;
	unsigned long div = 1;

530 531 532
	control = pm_readl(GCCTRL(clk->index));
	if (control & PM_BIT(DIVEN))
		div = 2 * (PM_BFEXT(DIV, control) + 1);
H
Haavard Skinnemoen 已提交
533 534 535 536 537 538 539 540 541 542

	return clk->parent->get_rate(clk->parent) / div;
}

static long genclk_set_rate(struct clk *clk, unsigned long rate, int apply)
{
	u32 control;
	unsigned long parent_rate, actual_rate, div;

	parent_rate = clk->parent->get_rate(clk->parent);
543
	control = pm_readl(GCCTRL(clk->index));
H
Haavard Skinnemoen 已提交
544 545 546

	if (rate > 3 * parent_rate / 4) {
		actual_rate = parent_rate;
547
		control &= ~PM_BIT(DIVEN);
H
Haavard Skinnemoen 已提交
548 549
	} else {
		div = (parent_rate + rate) / (2 * rate) - 1;
550
		control = PM_BFINS(DIV, div, control) | PM_BIT(DIVEN);
H
Haavard Skinnemoen 已提交
551 552 553
		actual_rate = parent_rate / (2 * (div + 1));
	}

554 555
	dev_dbg(clk->dev, "clk %s: new rate %lu (actual rate %lu)\n",
		clk->name, rate, actual_rate);
H
Haavard Skinnemoen 已提交
556 557

	if (apply)
558
		pm_writel(GCCTRL(clk->index), control);
H
Haavard Skinnemoen 已提交
559 560 561 562 563 564 565 566

	return actual_rate;
}

int genclk_set_parent(struct clk *clk, struct clk *parent)
{
	u32 control;

567 568
	dev_dbg(clk->dev, "clk %s: new parent %s (was %s)\n",
		clk->name, parent->name, clk->parent->name);
H
Haavard Skinnemoen 已提交
569

570
	control = pm_readl(GCCTRL(clk->index));
H
Haavard Skinnemoen 已提交
571 572

	if (parent == &osc1 || parent == &pll1)
573
		control |= PM_BIT(OSCSEL);
H
Haavard Skinnemoen 已提交
574
	else if (parent == &osc0 || parent == &pll0)
575
		control &= ~PM_BIT(OSCSEL);
H
Haavard Skinnemoen 已提交
576 577 578 579
	else
		return -EINVAL;

	if (parent == &pll0 || parent == &pll1)
580
		control |= PM_BIT(PLLSEL);
H
Haavard Skinnemoen 已提交
581
	else
582
		control &= ~PM_BIT(PLLSEL);
H
Haavard Skinnemoen 已提交
583

584
	pm_writel(GCCTRL(clk->index), control);
H
Haavard Skinnemoen 已提交
585 586 587 588 589
	clk->parent = parent;

	return 0;
}

590 591 592 593 594 595 596
static void __init genclk_init_parent(struct clk *clk)
{
	u32 control;
	struct clk *parent;

	BUG_ON(clk->index > 7);

597 598 599
	control = pm_readl(GCCTRL(clk->index));
	if (control & PM_BIT(OSCSEL))
		parent = (control & PM_BIT(PLLSEL)) ? &pll1 : &osc1;
600
	else
601
		parent = (control & PM_BIT(PLLSEL)) ? &pll0 : &osc0;
602 603 604 605

	clk->parent = parent;
}

606 607
static struct dw_dma_platform_data dw_dmac0_data = {
	.nr_channels	= 3,
608
	.block_size	= 4095U,
609 610
	.nr_masters	= 2,
	.data_width	= { 2, 2, 0, 0 },
611 612 613 614 615 616 617 618 619
};

static struct resource dw_dmac0_resource[] = {
	PBMEM(0xff200000),
	IRQ(2),
};
DEFINE_DEV_DATA(dw_dmac, 0);
DEV_CLK(hclk, dw_dmac0, hsb, 10);

H
Haavard Skinnemoen 已提交
620 621 622
/* --------------------------------------------------------------------
 *  System peripherals
 * -------------------------------------------------------------------- */
623 624 625 626 627 628 629
static struct resource at32_pm0_resource[] = {
	{
		.start	= 0xfff00000,
		.end	= 0xfff0007f,
		.flags	= IORESOURCE_MEM,
	},
	IRQ(20),
H
Haavard Skinnemoen 已提交
630
};
631 632 633 634 635 636 637 638

static struct resource at32ap700x_rtc0_resource[] = {
	{
		.start	= 0xfff00080,
		.end	= 0xfff000af,
		.flags	= IORESOURCE_MEM,
	},
	IRQ(21),
H
Haavard Skinnemoen 已提交
639
};
640 641 642 643

static struct resource at32_wdt0_resource[] = {
	{
		.start	= 0xfff000b0,
644
		.end	= 0xfff000cf,
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667
		.flags	= IORESOURCE_MEM,
	},
};

static struct resource at32_eic0_resource[] = {
	{
		.start	= 0xfff00100,
		.end	= 0xfff0013f,
		.flags	= IORESOURCE_MEM,
	},
	IRQ(19),
};

DEFINE_DEV(at32_pm, 0);
DEFINE_DEV(at32ap700x_rtc, 0);
DEFINE_DEV(at32_wdt, 0);
DEFINE_DEV(at32_eic, 0);

/*
 * Peripheral clock for PM, RTC, WDT and EIC. PM will ensure that this
 * is always running.
 */
static struct clk at32_pm_pclk = {
668
	.name		= "pclk",
669
	.dev		= &at32_pm0_device.dev,
670 671 672 673 674 675
	.parent		= &pbb_clk,
	.mode		= pbb_clk_mode,
	.get_rate	= pbb_clk_get_rate,
	.users		= 1,
	.index		= 0,
};
H
Haavard Skinnemoen 已提交
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700

static struct resource intc0_resource[] = {
	PBMEM(0xfff00400),
};
struct platform_device at32_intc0_device = {
	.name		= "intc",
	.id		= 0,
	.resource	= intc0_resource,
	.num_resources	= ARRAY_SIZE(intc0_resource),
};
DEV_CLK(pclk, at32_intc0, pbb, 1);

static struct clk ebi_clk = {
	.name		= "ebi",
	.parent		= &hsb_clk,
	.mode		= hsb_clk_mode,
	.get_rate	= hsb_clk_get_rate,
	.users		= 1,
};
static struct clk hramc_clk = {
	.name		= "hramc",
	.parent		= &hsb_clk,
	.mode		= hsb_clk_mode,
	.get_rate	= hsb_clk_get_rate,
	.users		= 1,
701
	.index		= 3,
H
Haavard Skinnemoen 已提交
702
};
703 704 705 706 707 708 709 710
static struct clk sdramc_clk = {
	.name		= "sdramc_clk",
	.parent		= &pbb_clk,
	.mode		= pbb_clk_mode,
	.get_rate	= pbb_clk_get_rate,
	.users		= 1,
	.index		= 14,
};
H
Haavard Skinnemoen 已提交
711

712 713 714 715 716 717 718
static struct resource smc0_resource[] = {
	PBMEM(0xfff03400),
};
DEFINE_DEV(smc, 0);
DEV_CLK(pclk, smc0, pbb, 13);
DEV_CLK(mck, smc0, hsb, 0);

H
Haavard Skinnemoen 已提交
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
static struct platform_device pdc_device = {
	.name		= "pdc",
	.id		= 0,
};
DEV_CLK(hclk, pdc, hsb, 4);
DEV_CLK(pclk, pdc, pba, 16);

static struct clk pico_clk = {
	.name		= "pico",
	.parent		= &cpu_clk,
	.mode		= cpu_clk_mode,
	.get_rate	= cpu_clk_get_rate,
	.users		= 1,
};

734 735 736 737
/* --------------------------------------------------------------------
 * HMATRIX
 * -------------------------------------------------------------------- */

738
struct clk at32_hmatrix_clk = {
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754
	.name		= "hmatrix_clk",
	.parent		= &pbb_clk,
	.mode		= pbb_clk_mode,
	.get_rate	= pbb_clk_get_rate,
	.index		= 2,
	.users		= 1,
};

/*
 * Set bits in the HMATRIX Special Function Register (SFR) used by the
 * External Bus Interface (EBI). This can be used to enable special
 * features like CompactFlash support, NAND Flash support, etc. on
 * certain chipselects.
 */
static inline void set_ebi_sfr_bits(u32 mask)
{
755
	hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, mask);
756 757
}

758
/* --------------------------------------------------------------------
759
 *  Timer/Counter (TC)
760
 * -------------------------------------------------------------------- */
761 762

static struct resource at32_tcb0_resource[] = {
763 764 765
	PBMEM(0xfff00c00),
	IRQ(22),
};
766 767
static struct platform_device at32_tcb0_device = {
	.name		= "atmel_tcb",
768
	.id		= 0,
769 770 771 772 773 774 775 776 777 778 779 780 781 782
	.resource	= at32_tcb0_resource,
	.num_resources	= ARRAY_SIZE(at32_tcb0_resource),
};
DEV_CLK(t0_clk, at32_tcb0, pbb, 3);

static struct resource at32_tcb1_resource[] = {
	PBMEM(0xfff01000),
	IRQ(23),
};
static struct platform_device at32_tcb1_device = {
	.name		= "atmel_tcb",
	.id		= 1,
	.resource	= at32_tcb1_resource,
	.num_resources	= ARRAY_SIZE(at32_tcb1_resource),
783
};
784
DEV_CLK(t0_clk, at32_tcb1, pbb, 4);
785

H
Haavard Skinnemoen 已提交
786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
/* --------------------------------------------------------------------
 *  PIO
 * -------------------------------------------------------------------- */

static struct resource pio0_resource[] = {
	PBMEM(0xffe02800),
	IRQ(13),
};
DEFINE_DEV(pio, 0);
DEV_CLK(mck, pio0, pba, 10);

static struct resource pio1_resource[] = {
	PBMEM(0xffe02c00),
	IRQ(14),
};
DEFINE_DEV(pio, 1);
DEV_CLK(mck, pio1, pba, 11);

static struct resource pio2_resource[] = {
	PBMEM(0xffe03000),
	IRQ(15),
};
DEFINE_DEV(pio, 2);
DEV_CLK(mck, pio2, pba, 12);

static struct resource pio3_resource[] = {
	PBMEM(0xffe03400),
	IRQ(16),
};
DEFINE_DEV(pio, 3);
DEV_CLK(mck, pio3, pba, 13);

818 819 820 821 822 823 824
static struct resource pio4_resource[] = {
	PBMEM(0xffe03800),
	IRQ(17),
};
DEFINE_DEV(pio, 4);
DEV_CLK(mck, pio4, pba, 14);

825
static int __init system_device_init(void)
H
Haavard Skinnemoen 已提交
826
{
827
	platform_device_register(&at32_pm0_device);
H
Haavard Skinnemoen 已提交
828
	platform_device_register(&at32_intc0_device);
829 830 831
	platform_device_register(&at32ap700x_rtc0_device);
	platform_device_register(&at32_wdt0_device);
	platform_device_register(&at32_eic0_device);
832
	platform_device_register(&smc0_device);
H
Haavard Skinnemoen 已提交
833
	platform_device_register(&pdc_device);
834
	platform_device_register(&dw_dmac0_device);
H
Haavard Skinnemoen 已提交
835

836 837
	platform_device_register(&at32_tcb0_device);
	platform_device_register(&at32_tcb1_device);
838

H
Haavard Skinnemoen 已提交
839 840 841 842
	platform_device_register(&pio0_device);
	platform_device_register(&pio1_device);
	platform_device_register(&pio2_device);
	platform_device_register(&pio3_device);
843
	platform_device_register(&pio4_device);
844 845

	return 0;
H
Haavard Skinnemoen 已提交
846
}
847
core_initcall(system_device_init);
H
Haavard Skinnemoen 已提交
848

849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
/* --------------------------------------------------------------------
 *  PSIF
 * -------------------------------------------------------------------- */
static struct resource atmel_psif0_resource[] __initdata = {
	{
		.start	= 0xffe03c00,
		.end	= 0xffe03cff,
		.flags	= IORESOURCE_MEM,
	},
	IRQ(18),
};
static struct clk atmel_psif0_pclk = {
	.name		= "pclk",
	.parent		= &pba_clk,
	.mode		= pba_clk_mode,
	.get_rate	= pba_clk_get_rate,
	.index		= 15,
};

static struct resource atmel_psif1_resource[] __initdata = {
	{
		.start	= 0xffe03d00,
		.end	= 0xffe03dff,
		.flags	= IORESOURCE_MEM,
	},
	IRQ(18),
};
static struct clk atmel_psif1_pclk = {
	.name		= "pclk",
	.parent		= &pba_clk,
	.mode		= pba_clk_mode,
	.get_rate	= pba_clk_get_rate,
	.index		= 15,
};

struct platform_device *__init at32_add_device_psif(unsigned int id)
{
	struct platform_device *pdev;
887
	u32 pin_mask;
888 889 890 891 892 893 894 895 896 897

	if (!(id == 0 || id == 1))
		return NULL;

	pdev = platform_device_alloc("atmel_psif", id);
	if (!pdev)
		return NULL;

	switch (id) {
	case 0:
898 899
		pin_mask  = (1 << 8) | (1 << 9); /* CLOCK & DATA */

900 901 902 903
		if (platform_device_add_resources(pdev, atmel_psif0_resource,
					ARRAY_SIZE(atmel_psif0_resource)))
			goto err_add_resources;
		atmel_psif0_pclk.dev = &pdev->dev;
904
		select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
905 906
		break;
	case 1:
907 908
		pin_mask  = (1 << 11) | (1 << 12); /* CLOCK & DATA */

909 910 911 912
		if (platform_device_add_resources(pdev, atmel_psif1_resource,
					ARRAY_SIZE(atmel_psif1_resource)))
			goto err_add_resources;
		atmel_psif1_pclk.dev = &pdev->dev;
913
		select_peripheral(PIOB, pin_mask, PERIPH_A, 0);
914 915 916 917 918 919 920 921 922 923 924 925 926
		break;
	default:
		return NULL;
	}

	platform_device_add(pdev);
	return pdev;

err_add_resources:
	platform_device_put(pdev);
	return NULL;
}

H
Haavard Skinnemoen 已提交
927 928 929 930
/* --------------------------------------------------------------------
 *  USART
 * -------------------------------------------------------------------- */

931 932 933 934
static struct atmel_uart_data atmel_usart0_data = {
	.use_dma_tx	= 1,
	.use_dma_rx	= 1,
};
935
static struct resource atmel_usart0_resource[] = {
H
Haavard Skinnemoen 已提交
936
	PBMEM(0xffe00c00),
937
	IRQ(6),
H
Haavard Skinnemoen 已提交
938
};
939
DEFINE_DEV_DATA(atmel_usart, 0);
940
DEV_CLK(usart, atmel_usart0, pba, 3);
H
Haavard Skinnemoen 已提交
941

942 943 944 945
static struct atmel_uart_data atmel_usart1_data = {
	.use_dma_tx	= 1,
	.use_dma_rx	= 1,
};
946
static struct resource atmel_usart1_resource[] = {
H
Haavard Skinnemoen 已提交
947 948 949
	PBMEM(0xffe01000),
	IRQ(7),
};
950
DEFINE_DEV_DATA(atmel_usart, 1);
951
DEV_CLK(usart, atmel_usart1, pba, 4);
H
Haavard Skinnemoen 已提交
952

953 954 955 956
static struct atmel_uart_data atmel_usart2_data = {
	.use_dma_tx	= 1,
	.use_dma_rx	= 1,
};
957
static struct resource atmel_usart2_resource[] = {
H
Haavard Skinnemoen 已提交
958 959 960
	PBMEM(0xffe01400),
	IRQ(8),
};
961
DEFINE_DEV_DATA(atmel_usart, 2);
962
DEV_CLK(usart, atmel_usart2, pba, 5);
H
Haavard Skinnemoen 已提交
963

964 965 966 967
static struct atmel_uart_data atmel_usart3_data = {
	.use_dma_tx	= 1,
	.use_dma_rx	= 1,
};
968
static struct resource atmel_usart3_resource[] = {
H
Haavard Skinnemoen 已提交
969 970 971
	PBMEM(0xffe01800),
	IRQ(9),
};
972
DEFINE_DEV_DATA(atmel_usart, 3);
973
DEV_CLK(usart, atmel_usart3, pba, 6);
H
Haavard Skinnemoen 已提交
974

975
static inline void configure_usart0_pins(int flags)
H
Haavard Skinnemoen 已提交
976
{
977
	u32 pin_mask = (1 << 8) | (1 << 9); /* RXD & TXD */
978 979 980
	if (flags & ATMEL_USART_RTS)	pin_mask |= (1 << 6);
	if (flags & ATMEL_USART_CTS)	pin_mask |= (1 << 7);
	if (flags & ATMEL_USART_CLK)	pin_mask |= (1 << 10);
981

982
	select_peripheral(PIOA, pin_mask, PERIPH_B, AT32_GPIOF_PULLUP);
H
Haavard Skinnemoen 已提交
983 984
}

985
static inline void configure_usart1_pins(int flags)
H
Haavard Skinnemoen 已提交
986
{
987
	u32 pin_mask = (1 << 17) | (1 << 18); /* RXD & TXD */
988 989 990
	if (flags & ATMEL_USART_RTS)	pin_mask |= (1 << 19);
	if (flags & ATMEL_USART_CTS)	pin_mask |= (1 << 20);
	if (flags & ATMEL_USART_CLK)	pin_mask |= (1 << 16);
991

992
	select_peripheral(PIOA, pin_mask, PERIPH_A, AT32_GPIOF_PULLUP);
H
Haavard Skinnemoen 已提交
993 994
}

995
static inline void configure_usart2_pins(int flags)
H
Haavard Skinnemoen 已提交
996
{
997
	u32 pin_mask = (1 << 26) | (1 << 27); /* RXD & TXD */
998 999 1000
	if (flags & ATMEL_USART_RTS)	pin_mask |= (1 << 30);
	if (flags & ATMEL_USART_CTS)	pin_mask |= (1 << 29);
	if (flags & ATMEL_USART_CLK)	pin_mask |= (1 << 28);
1001

1002
	select_peripheral(PIOB, pin_mask, PERIPH_B, AT32_GPIOF_PULLUP);
H
Haavard Skinnemoen 已提交
1003 1004
}

1005
static inline void configure_usart3_pins(int flags)
H
Haavard Skinnemoen 已提交
1006
{
1007
	u32 pin_mask = (1 << 18) | (1 << 17); /* RXD & TXD */
1008 1009 1010
	if (flags & ATMEL_USART_RTS)	pin_mask |= (1 << 16);
	if (flags & ATMEL_USART_CTS)	pin_mask |= (1 << 15);
	if (flags & ATMEL_USART_CLK)	pin_mask |= (1 << 19);
1011

1012
	select_peripheral(PIOB, pin_mask, PERIPH_B, AT32_GPIOF_PULLUP);
H
Haavard Skinnemoen 已提交
1013 1014
}

1015
static struct platform_device *__initdata at32_usarts[4];
1016

1017
void __init at32_map_usart(unsigned int hw_id, unsigned int line, int flags)
H
Haavard Skinnemoen 已提交
1018 1019
{
	struct platform_device *pdev;
1020
	struct atmel_uart_data *pdata;
H
Haavard Skinnemoen 已提交
1021

1022
	switch (hw_id) {
H
Haavard Skinnemoen 已提交
1023
	case 0:
1024
		pdev = &atmel_usart0_device;
1025
		configure_usart0_pins(flags);
H
Haavard Skinnemoen 已提交
1026 1027
		break;
	case 1:
1028
		pdev = &atmel_usart1_device;
1029
		configure_usart1_pins(flags);
H
Haavard Skinnemoen 已提交
1030 1031
		break;
	case 2:
1032
		pdev = &atmel_usart2_device;
1033
		configure_usart2_pins(flags);
H
Haavard Skinnemoen 已提交
1034 1035
		break;
	case 3:
1036
		pdev = &atmel_usart3_device;
1037
		configure_usart3_pins(flags);
H
Haavard Skinnemoen 已提交
1038 1039
		break;
	default:
1040
		return;
1041 1042 1043 1044 1045 1046
	}

	if (PXSEG(pdev->resource[0].start) == P4SEG) {
		/* Addresses in the P4 segment are permanently mapped 1:1 */
		struct atmel_uart_data *data = pdev->dev.platform_data;
		data->regs = (void __iomem *)pdev->resource[0].start;
H
Haavard Skinnemoen 已提交
1047 1048
	}

1049
	pdev->id = line;
1050
	pdata = pdev->dev.platform_data;
1051
	pdata->num = line;
1052
	at32_usarts[line] = pdev;
H
Haavard Skinnemoen 已提交
1053 1054 1055 1056
}

struct platform_device *__init at32_add_device_usart(unsigned int id)
{
1057 1058
	platform_device_register(at32_usarts[id]);
	return at32_usarts[id];
H
Haavard Skinnemoen 已提交
1059 1060 1061 1062
}

void __init at32_setup_serial_console(unsigned int usart_id)
{
1063
	atmel_default_console_device = at32_usarts[usart_id];
H
Haavard Skinnemoen 已提交
1064 1065 1066 1067 1068 1069
}

/* --------------------------------------------------------------------
 *  Ethernet
 * -------------------------------------------------------------------- */

1070
#ifdef CONFIG_CPU_AT32AP7000
1071
static struct macb_platform_data macb0_data;
H
Haavard Skinnemoen 已提交
1072 1073 1074 1075 1076 1077 1078 1079
static struct resource macb0_resource[] = {
	PBMEM(0xfff01800),
	IRQ(25),
};
DEFINE_DEV_DATA(macb, 0);
DEV_CLK(hclk, macb0, hsb, 8);
DEV_CLK(pclk, macb0, pbb, 6);

1080
static struct macb_platform_data macb1_data;
1081 1082 1083 1084 1085 1086 1087 1088
static struct resource macb1_resource[] = {
	PBMEM(0xfff01c00),
	IRQ(26),
};
DEFINE_DEV_DATA(macb, 1);
DEV_CLK(hclk, macb1, hsb, 9);
DEV_CLK(pclk, macb1, pbb, 7);

H
Haavard Skinnemoen 已提交
1089
struct platform_device *__init
1090
at32_add_device_eth(unsigned int id, struct macb_platform_data *data)
H
Haavard Skinnemoen 已提交
1091 1092
{
	struct platform_device *pdev;
1093
	u32 pin_mask;
H
Haavard Skinnemoen 已提交
1094 1095 1096 1097 1098

	switch (id) {
	case 0:
		pdev = &macb0_device;

1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
		pin_mask  = (1 << 3);	/* TXD0 */
		pin_mask |= (1 << 4);	/* TXD1 */
		pin_mask |= (1 << 7);	/* TXEN */
		pin_mask |= (1 << 8);	/* TXCK */
		pin_mask |= (1 << 9);	/* RXD0 */
		pin_mask |= (1 << 10);	/* RXD1 */
		pin_mask |= (1 << 13);	/* RXER */
		pin_mask |= (1 << 15);	/* RXDV */
		pin_mask |= (1 << 16);	/* MDC  */
		pin_mask |= (1 << 17);	/* MDIO */
H
Haavard Skinnemoen 已提交
1109 1110

		if (!data->is_rmii) {
1111 1112 1113 1114 1115 1116 1117 1118
			pin_mask |= (1 << 0);	/* COL  */
			pin_mask |= (1 << 1);	/* CRS  */
			pin_mask |= (1 << 2);	/* TXER */
			pin_mask |= (1 << 5);	/* TXD2 */
			pin_mask |= (1 << 6);	/* TXD3 */
			pin_mask |= (1 << 11);	/* RXD2 */
			pin_mask |= (1 << 12);	/* RXD3 */
			pin_mask |= (1 << 14);	/* RXCK */
1119
#ifndef CONFIG_BOARD_MIMC200
1120
			pin_mask |= (1 << 18);	/* SPD  */
1121
#endif
H
Haavard Skinnemoen 已提交
1122
		}
1123 1124 1125

		select_peripheral(PIOC, pin_mask, PERIPH_A, 0);

H
Haavard Skinnemoen 已提交
1126 1127
		break;

1128 1129 1130
	case 1:
		pdev = &macb1_device;

1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
		pin_mask  = (1 << 13);	/* TXD0 */
		pin_mask |= (1 << 14);	/* TXD1 */
		pin_mask |= (1 << 11);	/* TXEN */
		pin_mask |= (1 << 12);	/* TXCK */
		pin_mask |= (1 << 10);	/* RXD0 */
		pin_mask |= (1 << 6);	/* RXD1 */
		pin_mask |= (1 << 5);	/* RXER */
		pin_mask |= (1 << 4);	/* RXDV */
		pin_mask |= (1 << 3);	/* MDC  */
		pin_mask |= (1 << 2);	/* MDIO */

1142
#ifndef CONFIG_BOARD_MIMC200
1143 1144
		if (!data->is_rmii)
			pin_mask |= (1 << 15);	/* SPD  */
1145
#endif
1146 1147

		select_peripheral(PIOD, pin_mask, PERIPH_B, 0);
1148 1149

		if (!data->is_rmii) {
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
			pin_mask  = (1 << 19);	/* COL  */
			pin_mask |= (1 << 23);	/* CRS  */
			pin_mask |= (1 << 26);	/* TXER */
			pin_mask |= (1 << 27);	/* TXD2 */
			pin_mask |= (1 << 28);	/* TXD3 */
			pin_mask |= (1 << 29);	/* RXD2 */
			pin_mask |= (1 << 30);	/* RXD3 */
			pin_mask |= (1 << 24);	/* RXCK */

			select_peripheral(PIOC, pin_mask, PERIPH_B, 0);
1160 1161 1162
		}
		break;

H
Haavard Skinnemoen 已提交
1163 1164 1165 1166
	default:
		return NULL;
	}

1167
	memcpy(pdev->dev.platform_data, data, sizeof(struct macb_platform_data));
H
Haavard Skinnemoen 已提交
1168 1169 1170 1171
	platform_device_register(pdev);

	return pdev;
}
1172
#endif
H
Haavard Skinnemoen 已提交
1173 1174 1175 1176

/* --------------------------------------------------------------------
 *  SPI
 * -------------------------------------------------------------------- */
1177
static struct resource atmel_spi0_resource[] = {
H
Haavard Skinnemoen 已提交
1178 1179 1180
	PBMEM(0xffe00000),
	IRQ(3),
};
1181 1182 1183 1184 1185 1186 1187 1188 1189
DEFINE_DEV(atmel_spi, 0);
DEV_CLK(spi_clk, atmel_spi0, pba, 0);

static struct resource atmel_spi1_resource[] = {
	PBMEM(0xffe00400),
	IRQ(4),
};
DEFINE_DEV(atmel_spi, 1);
DEV_CLK(spi_clk, atmel_spi1, pba, 1);
H
Haavard Skinnemoen 已提交
1190

1191 1192
void __init
at32_spi_setup_slaves(unsigned int bus_num, struct spi_board_info *b, unsigned int n)
H
Haavard Skinnemoen 已提交
1193
{
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
	/*
	 * Manage the chipselects as GPIOs, normally using the same pins
	 * the SPI controller expects; but boards can use other pins.
	 */
	static u8 __initdata spi_pins[][4] = {
		{ GPIO_PIN_PA(3), GPIO_PIN_PA(4),
		  GPIO_PIN_PA(5), GPIO_PIN_PA(20) },
		{ GPIO_PIN_PB(2), GPIO_PIN_PB(3),
		  GPIO_PIN_PB(4), GPIO_PIN_PA(27) },
	};
1204 1205
	unsigned int pin, mode;

1206 1207 1208 1209
	/* There are only 2 SPI controllers */
	if (bus_num > 1)
		return;

1210 1211 1212 1213 1214 1215
	for (; n; n--, b++) {
		b->bus_num = bus_num;
		if (b->chip_select >= 4)
			continue;
		pin = (unsigned)b->controller_data;
		if (!pin) {
1216
			pin = spi_pins[bus_num][b->chip_select];
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
			b->controller_data = (void *)pin;
		}
		mode = AT32_GPIOF_OUTPUT;
		if (!(b->mode & SPI_CS_HIGH))
			mode |= AT32_GPIOF_HIGH;
		at32_select_gpio(pin, mode);
	}
}

struct platform_device *__init
at32_add_device_spi(unsigned int id, struct spi_board_info *b, unsigned int n)
{
H
Haavard Skinnemoen 已提交
1229
	struct platform_device *pdev;
1230
	u32 pin_mask;
H
Haavard Skinnemoen 已提交
1231 1232 1233

	switch (id) {
	case 0:
1234
		pdev = &atmel_spi0_device;
1235 1236
		pin_mask  = (1 << 1) | (1 << 2);	/* MOSI & SCK */

1237
		/* pullup MISO so a level is always defined */
1238 1239 1240
		select_peripheral(PIOA, (1 << 0), PERIPH_A, AT32_GPIOF_PULLUP);
		select_peripheral(PIOA, pin_mask, PERIPH_A, 0);

1241
		at32_spi_setup_slaves(0, b, n);
1242 1243 1244 1245
		break;

	case 1:
		pdev = &atmel_spi1_device;
1246 1247
		pin_mask  = (1 << 1) | (1 << 5);	/* MOSI */

1248
		/* pullup MISO so a level is always defined */
1249 1250 1251
		select_peripheral(PIOB, (1 << 0), PERIPH_B, AT32_GPIOF_PULLUP);
		select_peripheral(PIOB, pin_mask, PERIPH_B, 0);

1252
		at32_spi_setup_slaves(1, b, n);
H
Haavard Skinnemoen 已提交
1253 1254 1255 1256 1257 1258
		break;

	default:
		return NULL;
	}

1259
	spi_register_board_info(b, n);
H
Haavard Skinnemoen 已提交
1260 1261 1262 1263
	platform_device_register(pdev);
	return pdev;
}

1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
/* --------------------------------------------------------------------
 *  TWI
 * -------------------------------------------------------------------- */
static struct resource atmel_twi0_resource[] __initdata = {
	PBMEM(0xffe00800),
	IRQ(5),
};
static struct clk atmel_twi0_pclk = {
	.name		= "twi_pclk",
	.parent		= &pba_clk,
	.mode		= pba_clk_mode,
	.get_rate	= pba_clk_get_rate,
	.index		= 2,
};

1279 1280 1281
struct platform_device *__init at32_add_device_twi(unsigned int id,
						    struct i2c_board_info *b,
						    unsigned int n)
1282 1283
{
	struct platform_device *pdev;
1284
	u32 pin_mask;
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296

	if (id != 0)
		return NULL;

	pdev = platform_device_alloc("atmel_twi", id);
	if (!pdev)
		return NULL;

	if (platform_device_add_resources(pdev, atmel_twi0_resource,
				ARRAY_SIZE(atmel_twi0_resource)))
		goto err_add_resources;

1297 1298 1299
	pin_mask  = (1 << 6) | (1 << 7);	/* SDA & SDL */

	select_peripheral(PIOA, pin_mask, PERIPH_A, 0);
1300 1301 1302

	atmel_twi0_pclk.dev = &pdev->dev;

1303 1304 1305
	if (b)
		i2c_register_board_info(id, b, n);

1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
	platform_device_add(pdev);
	return pdev;

err_add_resources:
	platform_device_put(pdev);
	return NULL;
}

/* --------------------------------------------------------------------
 * MMC
 * -------------------------------------------------------------------- */
static struct resource atmel_mci0_resource[] __initdata = {
	PBMEM(0xfff02400),
	IRQ(28),
};
static struct clk atmel_mci0_pclk = {
	.name		= "mci_clk",
	.parent		= &pbb_clk,
	.mode		= pbb_clk_mode,
	.get_rate	= pbb_clk_get_rate,
	.index		= 9,
};

1329 1330
struct platform_device *__init
at32_add_device_mci(unsigned int id, struct mci_platform_data *data)
1331
{
1332
	struct platform_device		*pdev;
1333
	struct mci_dma_data	        *slave;
1334 1335
	u32				pioa_mask;
	u32				piob_mask;
1336

1337 1338 1339 1340 1341
	if (id != 0 || !data)
		return NULL;

	/* Must have at least one usable slot */
	if (!data->slot[0].bus_width && !data->slot[1].bus_width)
1342 1343 1344 1345
		return NULL;

	pdev = platform_device_alloc("atmel_mci", id);
	if (!pdev)
1346
		goto fail;
1347 1348 1349

	if (platform_device_add_resources(pdev, atmel_mci0_resource,
				ARRAY_SIZE(atmel_mci0_resource)))
1350 1351
		goto fail;

1352
	slave = kzalloc(sizeof(struct mci_dma_data), GFP_KERNEL);
1353 1354
	if (!slave)
		goto fail;
1355 1356 1357

	slave->sdata.dma_dev = &dw_dmac0_device.dev;
	slave->sdata.cfg_hi = (DWC_CFGH_SRC_PER(0)
1358
				| DWC_CFGH_DST_PER(1));
1359
	slave->sdata.cfg_lo &= ~(DWC_CFGL_HS_DST_POL
1360 1361
				| DWC_CFGL_HS_SRC_POL);

1362 1363
	data->dma_slave = slave;

1364 1365
	if (platform_device_add_data(pdev, data,
				sizeof(struct mci_platform_data)))
1366
		goto fail_free;
1367

1368
	/* CLK line is common to both slots */
1369
	pioa_mask = 1 << 10;
1370 1371 1372

	switch (data->slot[0].bus_width) {
	case 4:
1373 1374 1375
		pioa_mask |= 1 << 13;		/* DATA1 */
		pioa_mask |= 1 << 14;		/* DATA2 */
		pioa_mask |= 1 << 15;		/* DATA3 */
1376 1377
		/* fall through */
	case 1:
1378 1379
		pioa_mask |= 1 << 11;		/* CMD	 */
		pioa_mask |= 1 << 12;		/* DATA0 */
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389

		if (gpio_is_valid(data->slot[0].detect_pin))
			at32_select_gpio(data->slot[0].detect_pin, 0);
		if (gpio_is_valid(data->slot[0].wp_pin))
			at32_select_gpio(data->slot[0].wp_pin, 0);
		break;
	case 0:
		/* Slot is unused */
		break;
	default:
1390
		goto fail_free;
1391 1392
	}

1393 1394 1395
	select_peripheral(PIOA, pioa_mask, PERIPH_A, 0);
	piob_mask = 0;

1396 1397
	switch (data->slot[1].bus_width) {
	case 4:
1398 1399 1400
		piob_mask |= 1 <<  8;		/* DATA1 */
		piob_mask |= 1 <<  9;		/* DATA2 */
		piob_mask |= 1 << 10;		/* DATA3 */
1401 1402
		/* fall through */
	case 1:
1403 1404 1405
		piob_mask |= 1 <<  6;		/* CMD	 */
		piob_mask |= 1 <<  7;		/* DATA0 */
		select_peripheral(PIOB, piob_mask, PERIPH_B, 0);
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416

		if (gpio_is_valid(data->slot[1].detect_pin))
			at32_select_gpio(data->slot[1].detect_pin, 0);
		if (gpio_is_valid(data->slot[1].wp_pin))
			at32_select_gpio(data->slot[1].wp_pin, 0);
		break;
	case 0:
		/* Slot is unused */
		break;
	default:
		if (!data->slot[0].bus_width)
1417
			goto fail_free;
1418 1419 1420 1421

		data->slot[1].bus_width = 0;
		break;
	}
1422

1423 1424 1425 1426 1427
	atmel_mci0_pclk.dev = &pdev->dev;

	platform_device_add(pdev);
	return pdev;

1428 1429
fail_free:
	kfree(slave);
1430
fail:
1431
	data->dma_slave = NULL;
1432 1433 1434 1435
	platform_device_put(pdev);
	return NULL;
}

H
Haavard Skinnemoen 已提交
1436 1437 1438
/* --------------------------------------------------------------------
 *  LCDC
 * -------------------------------------------------------------------- */
1439
#if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
1440 1441
static struct atmel_lcdfb_info atmel_lcdfb0_data;
static struct resource atmel_lcdfb0_resource[] = {
H
Haavard Skinnemoen 已提交
1442 1443 1444 1445 1446 1447
	{
		.start		= 0xff000000,
		.end		= 0xff000fff,
		.flags		= IORESOURCE_MEM,
	},
	IRQ(1),
1448 1449 1450 1451 1452 1453
	{
		/* Placeholder for pre-allocated fb memory */
		.start		= 0x00000000,
		.end		= 0x00000000,
		.flags		= 0,
	},
H
Haavard Skinnemoen 已提交
1454
};
1455
DEFINE_DEV_DATA(atmel_lcdfb, 0);
1456
DEV_CLK(hclk, atmel_lcdfb0, hsb, 7);
1457 1458 1459
static struct clk atmel_lcdfb0_pixclk = {
	.name		= "lcdc_clk",
	.dev		= &atmel_lcdfb0_device.dev,
H
Haavard Skinnemoen 已提交
1460 1461 1462 1463 1464 1465 1466 1467
	.mode		= genclk_mode,
	.get_rate	= genclk_get_rate,
	.set_rate	= genclk_set_rate,
	.set_parent	= genclk_set_parent,
	.index		= 7,
};

struct platform_device *__init
1468
at32_add_device_lcdc(unsigned int id, struct atmel_lcdfb_info *data,
1469
		     unsigned long fbmem_start, unsigned long fbmem_len,
1470
		     u64 pin_mask)
H
Haavard Skinnemoen 已提交
1471 1472
{
	struct platform_device *pdev;
1473 1474 1475 1476
	struct atmel_lcdfb_info *info;
	struct fb_monspecs *monspecs;
	struct fb_videomode *modedb;
	unsigned int modedb_size;
1477
	u32 portc_mask, portd_mask, porte_mask;
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493

	/*
	 * Do a deep copy of the fb data, monspecs and modedb. Make
	 * sure all allocations are done before setting up the
	 * portmux.
	 */
	monspecs = kmemdup(data->default_monspecs,
			   sizeof(struct fb_monspecs), GFP_KERNEL);
	if (!monspecs)
		return NULL;

	modedb_size = sizeof(struct fb_videomode) * monspecs->modedb_len;
	modedb = kmemdup(monspecs->modedb, modedb_size, GFP_KERNEL);
	if (!modedb)
		goto err_dup_modedb;
	monspecs->modedb = modedb;
H
Haavard Skinnemoen 已提交
1494 1495 1496

	switch (id) {
	case 0:
1497
		pdev = &atmel_lcdfb0_device;
1498

1499 1500 1501 1502 1503
		if (pin_mask == 0ULL)
			/* Default to "full" lcdc control signals and 24bit */
			pin_mask = ATMEL_LCDC_PRI_24BIT | ATMEL_LCDC_PRI_CONTROL;

		/* LCDC on port C */
1504
		portc_mask = pin_mask & 0xfff80000;
1505
		select_peripheral(PIOC, portc_mask, PERIPH_A, 0);
1506 1507

		/* LCDC on port D */
1508 1509
		portd_mask = pin_mask & 0x0003ffff;
		select_peripheral(PIOD, portd_mask, PERIPH_A, 0);
1510 1511

		/* LCDC on port E */
1512 1513
		porte_mask = (pin_mask >> 32) & 0x0007ffff;
		select_peripheral(PIOE, porte_mask, PERIPH_B, 0);
H
Haavard Skinnemoen 已提交
1514

1515 1516
		clk_set_parent(&atmel_lcdfb0_pixclk, &pll0);
		clk_set_rate(&atmel_lcdfb0_pixclk, clk_get_rate(&pll0));
H
Haavard Skinnemoen 已提交
1517 1518 1519
		break;

	default:
1520
		goto err_invalid_id;
H
Haavard Skinnemoen 已提交
1521 1522
	}

1523 1524 1525 1526 1527 1528 1529 1530 1531
	if (fbmem_len) {
		pdev->resource[2].start = fbmem_start;
		pdev->resource[2].end = fbmem_start + fbmem_len - 1;
		pdev->resource[2].flags = IORESOURCE_MEM;
	}

	info = pdev->dev.platform_data;
	memcpy(info, data, sizeof(struct atmel_lcdfb_info));
	info->default_monspecs = monspecs;
H
Haavard Skinnemoen 已提交
1532

1533 1534
	pdev->name = "at32ap-lcdfb";

H
Haavard Skinnemoen 已提交
1535 1536
	platform_device_register(pdev);
	return pdev;
1537 1538 1539 1540 1541 1542

err_invalid_id:
	kfree(modedb);
err_dup_modedb:
	kfree(monspecs);
	return NULL;
H
Haavard Skinnemoen 已提交
1543
}
1544
#endif
H
Haavard Skinnemoen 已提交
1545

1546 1547 1548 1549 1550 1551 1552 1553
/* --------------------------------------------------------------------
 *  PWM
 * -------------------------------------------------------------------- */
static struct resource atmel_pwm0_resource[] __initdata = {
	PBMEM(0xfff01400),
	IRQ(24),
};
static struct clk atmel_pwm0_mck = {
1554
	.name		= "pwm_clk",
1555 1556 1557 1558 1559 1560 1561 1562 1563
	.parent		= &pbb_clk,
	.mode		= pbb_clk_mode,
	.get_rate	= pbb_clk_get_rate,
	.index		= 5,
};

struct platform_device *__init at32_add_device_pwm(u32 mask)
{
	struct platform_device *pdev;
1564
	u32 pin_mask;
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579

	if (!mask)
		return NULL;

	pdev = platform_device_alloc("atmel_pwm", 0);
	if (!pdev)
		return NULL;

	if (platform_device_add_resources(pdev, atmel_pwm0_resource,
				ARRAY_SIZE(atmel_pwm0_resource)))
		goto out_free_pdev;

	if (platform_device_add_data(pdev, &mask, sizeof(mask)))
		goto out_free_pdev;

1580
	pin_mask = 0;
1581
	if (mask & (1 << 0))
1582
		pin_mask |= (1 << 28);
1583
	if (mask & (1 << 1))
1584 1585 1586 1587 1588
		pin_mask |= (1 << 29);
	if (pin_mask > 0)
		select_peripheral(PIOA, pin_mask, PERIPH_A, 0);

	pin_mask = 0;
1589
	if (mask & (1 << 2))
1590
		pin_mask |= (1 << 21);
1591
	if (mask & (1 << 3))
1592 1593 1594
		pin_mask |= (1 << 22);
	if (pin_mask > 0)
		select_peripheral(PIOA, pin_mask, PERIPH_B, 0);
1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606

	atmel_pwm0_mck.dev = &pdev->dev;

	platform_device_add(pdev);

	return pdev;

out_free_pdev:
	platform_device_put(pdev);
	return NULL;
}

1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634
/* --------------------------------------------------------------------
 *  SSC
 * -------------------------------------------------------------------- */
static struct resource ssc0_resource[] = {
	PBMEM(0xffe01c00),
	IRQ(10),
};
DEFINE_DEV(ssc, 0);
DEV_CLK(pclk, ssc0, pba, 7);

static struct resource ssc1_resource[] = {
	PBMEM(0xffe02000),
	IRQ(11),
};
DEFINE_DEV(ssc, 1);
DEV_CLK(pclk, ssc1, pba, 8);

static struct resource ssc2_resource[] = {
	PBMEM(0xffe02400),
	IRQ(12),
};
DEFINE_DEV(ssc, 2);
DEV_CLK(pclk, ssc2, pba, 9);

struct platform_device *__init
at32_add_device_ssc(unsigned int id, unsigned int flags)
{
	struct platform_device *pdev;
1635
	u32 pin_mask = 0;
1636 1637 1638 1639 1640

	switch (id) {
	case 0:
		pdev = &ssc0_device;
		if (flags & ATMEL_SSC_RF)
1641
			pin_mask |= (1 << 21);	/* RF */
1642
		if (flags & ATMEL_SSC_RK)
1643
			pin_mask |= (1 << 22);	/* RK */
1644
		if (flags & ATMEL_SSC_TK)
1645
			pin_mask |= (1 << 23);	/* TK */
1646
		if (flags & ATMEL_SSC_TF)
1647
			pin_mask |= (1 << 24);	/* TF */
1648
		if (flags & ATMEL_SSC_TD)
1649
			pin_mask |= (1 << 25);	/* TD */
1650
		if (flags & ATMEL_SSC_RD)
1651 1652 1653 1654 1655
			pin_mask |= (1 << 26);	/* RD */

		if (pin_mask > 0)
			select_peripheral(PIOA, pin_mask, PERIPH_A, 0);

1656 1657 1658 1659
		break;
	case 1:
		pdev = &ssc1_device;
		if (flags & ATMEL_SSC_RF)
1660
			pin_mask |= (1 << 0);	/* RF */
1661
		if (flags & ATMEL_SSC_RK)
1662
			pin_mask |= (1 << 1);	/* RK */
1663
		if (flags & ATMEL_SSC_TK)
1664
			pin_mask |= (1 << 2);	/* TK */
1665
		if (flags & ATMEL_SSC_TF)
1666
			pin_mask |= (1 << 3);	/* TF */
1667
		if (flags & ATMEL_SSC_TD)
1668
			pin_mask |= (1 << 4);	/* TD */
1669
		if (flags & ATMEL_SSC_RD)
1670 1671 1672 1673 1674
			pin_mask |= (1 << 5);	/* RD */

		if (pin_mask > 0)
			select_peripheral(PIOA, pin_mask, PERIPH_B, 0);

1675 1676 1677 1678
		break;
	case 2:
		pdev = &ssc2_device;
		if (flags & ATMEL_SSC_TD)
1679
			pin_mask |= (1 << 13);	/* TD */
1680
		if (flags & ATMEL_SSC_RD)
1681
			pin_mask |= (1 << 14);	/* RD */
1682
		if (flags & ATMEL_SSC_TK)
1683
			pin_mask |= (1 << 15);	/* TK */
1684
		if (flags & ATMEL_SSC_TF)
1685
			pin_mask |= (1 << 16);	/* TF */
1686
		if (flags & ATMEL_SSC_RF)
1687
			pin_mask |= (1 << 17);	/* RF */
1688
		if (flags & ATMEL_SSC_RK)
1689 1690 1691 1692 1693
			pin_mask |= (1 << 18);	/* RK */

		if (pin_mask > 0)
			select_peripheral(PIOB, pin_mask, PERIPH_A, 0);

1694 1695 1696 1697 1698 1699 1700 1701 1702
		break;
	default:
		return NULL;
	}

	platform_device_register(pdev);
	return pdev;
}

H
Haavard Skinnemoen 已提交
1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732
/* --------------------------------------------------------------------
 *  USB Device Controller
 * -------------------------------------------------------------------- */
static struct resource usba0_resource[] __initdata = {
	{
		.start		= 0xff300000,
		.end		= 0xff3fffff,
		.flags		= IORESOURCE_MEM,
	}, {
		.start		= 0xfff03000,
		.end		= 0xfff033ff,
		.flags		= IORESOURCE_MEM,
	},
	IRQ(31),
};
static struct clk usba0_pclk = {
	.name		= "pclk",
	.parent		= &pbb_clk,
	.mode		= pbb_clk_mode,
	.get_rate	= pbb_clk_get_rate,
	.index		= 12,
};
static struct clk usba0_hclk = {
	.name		= "hclk",
	.parent		= &hsb_clk,
	.mode		= hsb_clk_mode,
	.get_rate	= hsb_clk_get_rate,
	.index		= 6,
};

1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
#define EP(nam, idx, maxpkt, maxbk, dma, isoc)			\
	[idx] = {						\
		.name		= nam,				\
		.index		= idx,				\
		.fifo_size	= maxpkt,			\
		.nr_banks	= maxbk,			\
		.can_dma	= dma,				\
		.can_isoc	= isoc,				\
	}

static struct usba_ep_data at32_usba_ep[] __initdata = {
	EP("ep0",     0,   64, 1, 0, 0),
	EP("ep1",     1,  512, 2, 1, 1),
	EP("ep2",     2,  512, 2, 1, 1),
	EP("ep3-int", 3,   64, 3, 1, 0),
	EP("ep4-int", 4,   64, 3, 1, 0),
	EP("ep5",     5, 1024, 3, 1, 1),
	EP("ep6",     6, 1024, 3, 1, 1),
};

#undef EP

H
Haavard Skinnemoen 已提交
1755 1756 1757
struct platform_device *__init
at32_add_device_usba(unsigned int id, struct usba_platform_data *data)
{
1758 1759 1760 1761 1762 1763 1764 1765
	/*
	 * pdata doesn't have room for any endpoints, so we need to
	 * append room for the ones we need right after it.
	 */
	struct {
		struct usba_platform_data pdata;
		struct usba_ep_data ep[7];
	} usba_data;
H
Haavard Skinnemoen 已提交
1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
	struct platform_device *pdev;

	if (id != 0)
		return NULL;

	pdev = platform_device_alloc("atmel_usba_udc", 0);
	if (!pdev)
		return NULL;

	if (platform_device_add_resources(pdev, usba0_resource,
					  ARRAY_SIZE(usba0_resource)))
		goto out_free_pdev;

1779
	if (data) {
1780
		usba_data.pdata.vbus_pin = data->vbus_pin;
1781 1782
		usba_data.pdata.vbus_pin_inverted = data->vbus_pin_inverted;
	} else {
1783
		usba_data.pdata.vbus_pin = -EINVAL;
1784 1785
		usba_data.pdata.vbus_pin_inverted = -EINVAL;
	}
H
Haavard Skinnemoen 已提交
1786

1787 1788 1789 1790 1791 1792 1793
	data = &usba_data.pdata;
	data->num_ep = ARRAY_SIZE(at32_usba_ep);
	memcpy(data->ep, at32_usba_ep, sizeof(at32_usba_ep));

	if (platform_device_add_data(pdev, data, sizeof(usba_data)))
		goto out_free_pdev;

1794
	if (gpio_is_valid(data->vbus_pin))
1795
		at32_select_gpio(data->vbus_pin, 0);
H
Haavard Skinnemoen 已提交
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808

	usba0_pclk.dev = &pdev->dev;
	usba0_hclk.dev = &pdev->dev;

	platform_device_add(pdev);

	return pdev;

out_free_pdev:
	platform_device_put(pdev);
	return NULL;
}

1809
/* --------------------------------------------------------------------
1810
 * IDE / CompactFlash
1811
 * -------------------------------------------------------------------- */
1812
#if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7001)
1813
static struct resource at32_smc_cs4_resource[] __initdata = {
1814 1815 1816 1817 1818 1819 1820
	{
		.start	= 0x04000000,
		.end	= 0x07ffffff,
		.flags	= IORESOURCE_MEM,
	},
	IRQ(~0UL), /* Magic IRQ will be overridden */
};
1821 1822 1823 1824 1825 1826 1827 1828
static struct resource at32_smc_cs5_resource[] __initdata = {
	{
		.start	= 0x20000000,
		.end	= 0x23ffffff,
		.flags	= IORESOURCE_MEM,
	},
	IRQ(~0UL), /* Magic IRQ will be overridden */
};
1829

1830 1831
static int __init at32_init_ide_or_cf(struct platform_device *pdev,
		unsigned int cs, unsigned int extint)
1832
{
1833
	static unsigned int extint_pin_map[4] __initdata = {
1834 1835 1836 1837
		(1 << 25),
		(1 << 26),
		(1 << 27),
		(1 << 28),
1838 1839
	};
	static bool common_pins_initialized __initdata = false;
1840
	unsigned int extint_pin;
1841
	int ret;
1842
	u32 pin_mask;
1843

1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
	if (extint >= ARRAY_SIZE(extint_pin_map))
		return -EINVAL;
	extint_pin = extint_pin_map[extint];

	switch (cs) {
	case 4:
		ret = platform_device_add_resources(pdev,
				at32_smc_cs4_resource,
				ARRAY_SIZE(at32_smc_cs4_resource));
		if (ret)
			return ret;

1856 1857
		/* NCS4   -> OE_N  */
		select_peripheral(PIOE, (1 << 21), PERIPH_A, 0);
1858
		hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, HMATRIX_EBI_CF0_ENABLE);
1859
		break;
1860 1861 1862 1863 1864 1865 1866
	case 5:
		ret = platform_device_add_resources(pdev,
				at32_smc_cs5_resource,
				ARRAY_SIZE(at32_smc_cs5_resource));
		if (ret)
			return ret;

1867 1868
		/* NCS5   -> OE_N  */
		select_peripheral(PIOE, (1 << 22), PERIPH_A, 0);
1869
		hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, HMATRIX_EBI_CF1_ENABLE);
1870 1871
		break;
	default:
1872
		return -EINVAL;
1873 1874
	}

1875
	if (!common_pins_initialized) {
1876 1877 1878 1879 1880 1881 1882
		pin_mask  = (1 << 19);	/* CFCE1  -> CS0_N */
		pin_mask |= (1 << 20);	/* CFCE2  -> CS1_N */
		pin_mask |= (1 << 23);	/* CFRNW  -> DIR   */
		pin_mask |= (1 << 24);	/* NWAIT  <- IORDY */

		select_peripheral(PIOE, pin_mask, PERIPH_A, 0);

1883
		common_pins_initialized = true;
1884 1885
	}

1886
	select_peripheral(PIOB, extint_pin, PERIPH_A, AT32_GPIOF_DEGLITCH);
1887 1888 1889 1890

	pdev->resource[1].start = EIM_IRQ_BASE + extint;
	pdev->resource[1].end = pdev->resource[1].start;

1891 1892
	return 0;
}
1893

1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927
struct platform_device *__init
at32_add_device_ide(unsigned int id, unsigned int extint,
		    struct ide_platform_data *data)
{
	struct platform_device *pdev;

	pdev = platform_device_alloc("at32_ide", id);
	if (!pdev)
		goto fail;

	if (platform_device_add_data(pdev, data,
				sizeof(struct ide_platform_data)))
		goto fail;

	if (at32_init_ide_or_cf(pdev, data->cs, extint))
		goto fail;

	platform_device_add(pdev);
	return pdev;

fail:
	platform_device_put(pdev);
	return NULL;
}

struct platform_device *__init
at32_add_device_cf(unsigned int id, unsigned int extint,
		    struct cf_platform_data *data)
{
	struct platform_device *pdev;

	pdev = platform_device_alloc("at32_cf", id);
	if (!pdev)
		goto fail;
1928

1929 1930 1931 1932 1933 1934 1935
	if (platform_device_add_data(pdev, data,
				sizeof(struct cf_platform_data)))
		goto fail;

	if (at32_init_ide_or_cf(pdev, data->cs, extint))
		goto fail;

D
David Brownell 已提交
1936
	if (gpio_is_valid(data->detect_pin))
1937
		at32_select_gpio(data->detect_pin, AT32_GPIOF_DEGLITCH);
D
David Brownell 已提交
1938
	if (gpio_is_valid(data->reset_pin))
1939
		at32_select_gpio(data->reset_pin, 0);
D
David Brownell 已提交
1940
	if (gpio_is_valid(data->vcc_pin))
1941 1942 1943 1944
		at32_select_gpio(data->vcc_pin, 0);
	/* READY is used as extint, so we can't select it as gpio */

	platform_device_add(pdev);
1945
	return pdev;
1946 1947 1948 1949

fail:
	platform_device_put(pdev);
	return NULL;
1950
}
1951
#endif
1952

1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987
/* --------------------------------------------------------------------
 * NAND Flash / SmartMedia
 * -------------------------------------------------------------------- */
static struct resource smc_cs3_resource[] __initdata = {
	{
		.start	= 0x0c000000,
		.end	= 0x0fffffff,
		.flags	= IORESOURCE_MEM,
	}, {
		.start	= 0xfff03c00,
		.end	= 0xfff03fff,
		.flags	= IORESOURCE_MEM,
	},
};

struct platform_device *__init
at32_add_device_nand(unsigned int id, struct atmel_nand_data *data)
{
	struct platform_device *pdev;

	if (id != 0 || !data)
		return NULL;

	pdev = platform_device_alloc("atmel_nand", id);
	if (!pdev)
		goto fail;

	if (platform_device_add_resources(pdev, smc_cs3_resource,
				ARRAY_SIZE(smc_cs3_resource)))
		goto fail;

	if (platform_device_add_data(pdev, data,
				sizeof(struct atmel_nand_data)))
		goto fail;

1988
	hmatrix_sfr_set_bits(HMATRIX_SLAVE_EBI, HMATRIX_EBI_NAND_ENABLE);
1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
	if (data->enable_pin)
		at32_select_gpio(data->enable_pin,
				AT32_GPIOF_OUTPUT | AT32_GPIOF_HIGH);
	if (data->rdy_pin)
		at32_select_gpio(data->rdy_pin, 0);
	if (data->det_pin)
		at32_select_gpio(data->det_pin, 0);

	platform_device_add(pdev);
	return pdev;

fail:
	platform_device_put(pdev);
	return NULL;
}

2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
/* --------------------------------------------------------------------
 * AC97C
 * -------------------------------------------------------------------- */
static struct resource atmel_ac97c0_resource[] __initdata = {
	PBMEM(0xfff02800),
	IRQ(29),
};
static struct clk atmel_ac97c0_pclk = {
	.name		= "pclk",
	.parent		= &pbb_clk,
	.mode		= pbb_clk_mode,
	.get_rate	= pbb_clk_get_rate,
	.index		= 10,
};

2020
struct platform_device *__init
2021 2022
at32_add_device_ac97c(unsigned int id, struct ac97c_platform_data *data,
		      unsigned int flags)
2023
{
2024 2025 2026 2027 2028
	struct platform_device		*pdev;
	struct dw_dma_slave		*rx_dws;
	struct dw_dma_slave		*tx_dws;
	struct ac97c_platform_data	_data;
	u32				pin_mask;
2029 2030 2031 2032 2033 2034 2035 2036 2037 2038

	if (id != 0)
		return NULL;

	pdev = platform_device_alloc("atmel_ac97c", id);
	if (!pdev)
		return NULL;

	if (platform_device_add_resources(pdev, atmel_ac97c0_resource,
				ARRAY_SIZE(atmel_ac97c0_resource)))
2039
		goto out_free_resources;
2040 2041 2042 2043

	if (!data) {
		data = &_data;
		memset(data, 0, sizeof(struct ac97c_platform_data));
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054
		data->reset_pin = -ENODEV;
	}

	rx_dws = &data->rx_dws;
	tx_dws = &data->tx_dws;

	/* Check if DMA slave interface for capture should be configured. */
	if (flags & AC97C_CAPTURE) {
		rx_dws->dma_dev = &dw_dmac0_device.dev;
		rx_dws->cfg_hi = DWC_CFGH_SRC_PER(3);
		rx_dws->cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL);
2055 2056
		rx_dws->src_master = 0;
		rx_dws->dst_master = 1;
2057 2058
	}

2059 2060 2061 2062 2063
	/* Check if DMA slave interface for playback should be configured. */
	if (flags & AC97C_PLAYBACK) {
		tx_dws->dma_dev = &dw_dmac0_device.dev;
		tx_dws->cfg_hi = DWC_CFGH_DST_PER(4);
		tx_dws->cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL);
2064 2065
		tx_dws->src_master = 0;
		tx_dws->dst_master = 1;
2066
	}
2067

2068 2069
	if (platform_device_add_data(pdev, data,
				sizeof(struct ac97c_platform_data)))
2070
		goto out_free_resources;
2071

2072 2073
	/* SDO | SYNC | SCLK | SDI */
	pin_mask = (1 << 20) | (1 << 21) | (1 << 22) | (1 << 23);
2074 2075

	select_peripheral(PIOB, pin_mask, PERIPH_B, 0);
2076

2077 2078 2079
	if (gpio_is_valid(data->reset_pin))
		at32_select_gpio(data->reset_pin, AT32_GPIOF_OUTPUT
				| AT32_GPIOF_HIGH);
2080 2081 2082 2083 2084 2085

	atmel_ac97c0_pclk.dev = &pdev->dev;

	platform_device_add(pdev);
	return pdev;

2086
out_free_resources:
2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113
	platform_device_put(pdev);
	return NULL;
}

/* --------------------------------------------------------------------
 * ABDAC
 * -------------------------------------------------------------------- */
static struct resource abdac0_resource[] __initdata = {
	PBMEM(0xfff02000),
	IRQ(27),
};
static struct clk abdac0_pclk = {
	.name		= "pclk",
	.parent		= &pbb_clk,
	.mode		= pbb_clk_mode,
	.get_rate	= pbb_clk_get_rate,
	.index		= 8,
};
static struct clk abdac0_sample_clk = {
	.name		= "sample_clk",
	.mode		= genclk_mode,
	.get_rate	= genclk_get_rate,
	.set_rate	= genclk_set_rate,
	.set_parent	= genclk_set_parent,
	.index		= 6,
};

2114 2115
struct platform_device *__init
at32_add_device_abdac(unsigned int id, struct atmel_abdac_pdata *data)
2116
{
2117 2118 2119
	struct platform_device	*pdev;
	struct dw_dma_slave	*dws;
	u32			pin_mask;
2120

2121
	if (id != 0 || !data)
2122 2123
		return NULL;

2124
	pdev = platform_device_alloc("atmel_abdac", id);
2125 2126 2127 2128 2129
	if (!pdev)
		return NULL;

	if (platform_device_add_resources(pdev, abdac0_resource,
				ARRAY_SIZE(abdac0_resource)))
2130 2131 2132 2133 2134 2135 2136
		goto out_free_resources;

	dws = &data->dws;

	dws->dma_dev = &dw_dmac0_device.dev;
	dws->cfg_hi = DWC_CFGH_DST_PER(2);
	dws->cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL);
2137 2138
	dws->src_master = 0;
	dws->dst_master = 1;
2139 2140 2141 2142

	if (platform_device_add_data(pdev, data,
				sizeof(struct atmel_abdac_pdata)))
		goto out_free_resources;
2143

2144 2145 2146 2147
	pin_mask  = (1 << 20) | (1 << 22);	/* DATA1 & DATAN1 */
	pin_mask |= (1 << 21) | (1 << 23);	/* DATA0 & DATAN0 */

	select_peripheral(PIOB, pin_mask, PERIPH_A, 0);
2148 2149 2150 2151 2152 2153 2154

	abdac0_pclk.dev = &pdev->dev;
	abdac0_sample_clk.dev = &pdev->dev;

	platform_device_add(pdev);
	return pdev;

2155
out_free_resources:
2156 2157 2158 2159
	platform_device_put(pdev);
	return NULL;
}

2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203
/* --------------------------------------------------------------------
 *  GCLK
 * -------------------------------------------------------------------- */
static struct clk gclk0 = {
	.name		= "gclk0",
	.mode		= genclk_mode,
	.get_rate	= genclk_get_rate,
	.set_rate	= genclk_set_rate,
	.set_parent	= genclk_set_parent,
	.index		= 0,
};
static struct clk gclk1 = {
	.name		= "gclk1",
	.mode		= genclk_mode,
	.get_rate	= genclk_get_rate,
	.set_rate	= genclk_set_rate,
	.set_parent	= genclk_set_parent,
	.index		= 1,
};
static struct clk gclk2 = {
	.name		= "gclk2",
	.mode		= genclk_mode,
	.get_rate	= genclk_get_rate,
	.set_rate	= genclk_set_rate,
	.set_parent	= genclk_set_parent,
	.index		= 2,
};
static struct clk gclk3 = {
	.name		= "gclk3",
	.mode		= genclk_mode,
	.get_rate	= genclk_get_rate,
	.set_rate	= genclk_set_rate,
	.set_parent	= genclk_set_parent,
	.index		= 3,
};
static struct clk gclk4 = {
	.name		= "gclk4",
	.mode		= genclk_mode,
	.get_rate	= genclk_get_rate,
	.set_rate	= genclk_set_rate,
	.set_parent	= genclk_set_parent,
	.index		= 4,
};

2204
static __initdata struct clk *init_clocks[] = {
H
Haavard Skinnemoen 已提交
2205 2206 2207 2208 2209 2210 2211 2212 2213
	&osc32k,
	&osc0,
	&osc1,
	&pll0,
	&pll1,
	&cpu_clk,
	&hsb_clk,
	&pba_clk,
	&pbb_clk,
2214
	&at32_pm_pclk,
H
Haavard Skinnemoen 已提交
2215
	&at32_intc0_pclk,
2216
	&at32_hmatrix_clk,
H
Haavard Skinnemoen 已提交
2217 2218
	&ebi_clk,
	&hramc_clk,
2219
	&sdramc_clk,
2220 2221
	&smc0_pclk,
	&smc0_mck,
H
Haavard Skinnemoen 已提交
2222 2223
	&pdc_hclk,
	&pdc_pclk,
2224
	&dw_dmac0_hclk,
H
Haavard Skinnemoen 已提交
2225 2226 2227 2228 2229
	&pico_clk,
	&pio0_mck,
	&pio1_mck,
	&pio2_mck,
	&pio3_mck,
2230
	&pio4_mck,
2231 2232
	&at32_tcb0_t0_clk,
	&at32_tcb1_t0_clk,
2233 2234
	&atmel_psif0_pclk,
	&atmel_psif1_pclk,
2235 2236 2237 2238
	&atmel_usart0_usart,
	&atmel_usart1_usart,
	&atmel_usart2_usart,
	&atmel_usart3_usart,
2239
	&atmel_pwm0_mck,
2240
#if defined(CONFIG_CPU_AT32AP7000)
H
Haavard Skinnemoen 已提交
2241 2242
	&macb0_hclk,
	&macb0_pclk,
2243 2244
	&macb1_hclk,
	&macb1_pclk,
2245
#endif
2246 2247
	&atmel_spi0_spi_clk,
	&atmel_spi1_spi_clk,
2248 2249
	&atmel_twi0_pclk,
	&atmel_mci0_pclk,
2250
#if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
2251
	&atmel_lcdfb0_hclk,
2252
	&atmel_lcdfb0_pixclk,
2253
#endif
2254 2255 2256
	&ssc0_pclk,
	&ssc1_pclk,
	&ssc2_pclk,
H
Haavard Skinnemoen 已提交
2257 2258
	&usba0_hclk,
	&usba0_pclk,
2259 2260 2261
	&atmel_ac97c0_pclk,
	&abdac0_pclk,
	&abdac0_sample_clk,
2262 2263 2264 2265 2266
	&gclk0,
	&gclk1,
	&gclk2,
	&gclk3,
	&gclk4,
H
Haavard Skinnemoen 已提交
2267 2268
};

2269
void __init setup_platform(void)
H
Haavard Skinnemoen 已提交
2270 2271 2272 2273
{
	u32 cpu_mask = 0, hsb_mask = 0, pba_mask = 0, pbb_mask = 0;
	int i;

2274
	if (pm_readl(MCCTRL) & PM_BIT(PLLSEL)) {
H
Haavard Skinnemoen 已提交
2275
		main_clock = &pll0;
2276 2277
		cpu_clk.parent = &pll0;
	} else {
H
Haavard Skinnemoen 已提交
2278
		main_clock = &osc0;
2279 2280
		cpu_clk.parent = &osc0;
	}
H
Haavard Skinnemoen 已提交
2281

2282
	if (pm_readl(PLL0) & PM_BIT(PLLOSC))
H
Haavard Skinnemoen 已提交
2283
		pll0.parent = &osc1;
2284
	if (pm_readl(PLL1) & PM_BIT(PLLOSC))
H
Haavard Skinnemoen 已提交
2285 2286
		pll1.parent = &osc1;

2287 2288 2289 2290 2291
	genclk_init_parent(&gclk0);
	genclk_init_parent(&gclk1);
	genclk_init_parent(&gclk2);
	genclk_init_parent(&gclk3);
	genclk_init_parent(&gclk4);
2292
#if defined(CONFIG_CPU_AT32AP7000) || defined(CONFIG_CPU_AT32AP7002)
2293
	genclk_init_parent(&atmel_lcdfb0_pixclk);
2294
#endif
2295
	genclk_init_parent(&abdac0_sample_clk);
2296

H
Haavard Skinnemoen 已提交
2297
	/*
2298 2299 2300 2301 2302 2303 2304
	 * Build initial dynamic clock list by registering all clocks
	 * from the array.
	 * At the same time, turn on all clocks that have at least one
	 * user already, and turn off everything else. We only do this
	 * for module clocks, and even though it isn't particularly
	 * pretty to  check the address of the mode function, it should
	 * do the trick...
H
Haavard Skinnemoen 已提交
2305
	 */
2306 2307 2308 2309 2310
	for (i = 0; i < ARRAY_SIZE(init_clocks); i++) {
		struct clk *clk = init_clocks[i];

		/* first, register clock */
		at32_clk_register(clk);
H
Haavard Skinnemoen 已提交
2311

2312 2313 2314
		if (clk->users == 0)
			continue;

H
Haavard Skinnemoen 已提交
2315 2316 2317 2318 2319 2320 2321 2322 2323 2324
		if (clk->mode == &cpu_clk_mode)
			cpu_mask |= 1 << clk->index;
		else if (clk->mode == &hsb_clk_mode)
			hsb_mask |= 1 << clk->index;
		else if (clk->mode == &pba_clk_mode)
			pba_mask |= 1 << clk->index;
		else if (clk->mode == &pbb_clk_mode)
			pbb_mask |= 1 << clk->index;
	}

2325 2326 2327 2328
	pm_writel(CPU_MASK, cpu_mask);
	pm_writel(HSB_MASK, hsb_mask);
	pm_writel(PBA_MASK, pba_mask);
	pm_writel(PBB_MASK, pbb_mask);
2329 2330 2331 2332 2333 2334 2335

	/* Initialize the port muxes */
	at32_init_pio(&pio0_device);
	at32_init_pio(&pio1_device);
	at32_init_pio(&pio2_device);
	at32_init_pio(&pio3_device);
	at32_init_pio(&pio4_device);
H
Haavard Skinnemoen 已提交
2336
}
2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361

struct gen_pool *sram_pool;

static int __init sram_init(void)
{
	struct gen_pool *pool;

	/* 1KiB granularity */
	pool = gen_pool_create(10, -1);
	if (!pool)
		goto fail;

	if (gen_pool_add(pool, 0x24000000, 0x8000, -1))
		goto err_pool_add;

	sram_pool = pool;
	return 0;

err_pool_add:
	gen_pool_destroy(pool);
fail:
	pr_err("Failed to create SRAM pool\n");
	return -ENOMEM;
}
core_initcall(sram_init);