common.c 18.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * arch/arm/mach-kirkwood/common.c
 *
 * Core functions for Marvell Kirkwood SoCs
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/serial_8250.h>
#include <linux/ata_platform.h>
16
#include <linux/mtd/nand.h>
17
#include <linux/dma-mapping.h>
18 19
#include <linux/clk-provider.h>
#include <linux/spinlock.h>
20
#include <linux/mv643xx_i2c.h>
21
#include <net/dsa.h>
22 23
#include <asm/page.h>
#include <asm/timex.h>
24
#include <asm/kexec.h>
25 26
#include <asm/mach/map.h>
#include <asm/mach/time.h>
27
#include <mach/kirkwood.h>
28
#include <mach/bridge-regs.h>
29
#include <plat/audio.h>
30
#include <plat/cache-feroceon-l2.h>
31
#include <plat/mvsdio.h>
32
#include <plat/orion_nand.h>
33
#include <plat/ehci-orion.h>
34
#include <plat/common.h>
35
#include <plat/time.h>
36
#include <plat/addr-map.h>
37
#include <plat/mv_xor.h>
38 39 40 41 42 43 44 45 46 47 48
#include "common.h"

/*****************************************************************************
 * I/O Address Mapping
 ****************************************************************************/
static struct map_desc kirkwood_io_desc[] __initdata = {
	{
		.virtual	= KIRKWOOD_PCIE_IO_VIRT_BASE,
		.pfn		= __phys_to_pfn(KIRKWOOD_PCIE_IO_PHYS_BASE),
		.length		= KIRKWOOD_PCIE_IO_SIZE,
		.type		= MT_DEVICE,
49 50 51 52 53
	}, {
		.virtual	= KIRKWOOD_PCIE1_IO_VIRT_BASE,
		.pfn		= __phys_to_pfn(KIRKWOOD_PCIE1_IO_PHYS_BASE),
		.length		= KIRKWOOD_PCIE1_IO_SIZE,
		.type		= MT_DEVICE,
54 55 56 57 58 59 60 61 62 63 64 65 66
	}, {
		.virtual	= KIRKWOOD_REGS_VIRT_BASE,
		.pfn		= __phys_to_pfn(KIRKWOOD_REGS_PHYS_BASE),
		.length		= KIRKWOOD_REGS_SIZE,
		.type		= MT_DEVICE,
	},
};

void __init kirkwood_map_io(void)
{
	iotable_init(kirkwood_io_desc, ARRAY_SIZE(kirkwood_io_desc));
}

67 68 69
/*****************************************************************************
 * CLK tree
 ****************************************************************************/
70

71 72 73 74 75 76 77 78
static void enable_sata0(void)
{
	/* Enable PLL and IVREF */
	writel(readl(SATA0_PHY_MODE_2) | 0xf, SATA0_PHY_MODE_2);
	/* Enable PHY */
	writel(readl(SATA0_IF_CTRL) & ~0x200, SATA0_IF_CTRL);
}

79 80 81 82 83 84 85 86
static void disable_sata0(void)
{
	/* Disable PLL and IVREF */
	writel(readl(SATA0_PHY_MODE_2) & ~0xf, SATA0_PHY_MODE_2);
	/* Disable PHY */
	writel(readl(SATA0_IF_CTRL) | 0x200, SATA0_IF_CTRL);
}

87 88 89 90 91 92 93 94
static void enable_sata1(void)
{
	/* Enable PLL and IVREF */
	writel(readl(SATA1_PHY_MODE_2) | 0xf, SATA1_PHY_MODE_2);
	/* Enable PHY */
	writel(readl(SATA1_IF_CTRL) & ~0x200, SATA1_IF_CTRL);
}

95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
static void disable_sata1(void)
{
	/* Disable PLL and IVREF */
	writel(readl(SATA1_PHY_MODE_2) & ~0xf, SATA1_PHY_MODE_2);
	/* Disable PHY */
	writel(readl(SATA1_IF_CTRL) | 0x200, SATA1_IF_CTRL);
}

static void disable_pcie0(void)
{
	writel(readl(PCIE_LINK_CTRL) | 0x10, PCIE_LINK_CTRL);
	while (1)
		if (readl(PCIE_STATUS) & 0x1)
			break;
	writel(readl(PCIE_LINK_CTRL) & ~0x10, PCIE_LINK_CTRL);
}

static void disable_pcie1(void)
{
	u32 dev, rev;

	kirkwood_pcie_id(&dev, &rev);

	if (dev == MV88F6282_DEV_ID) {
		writel(readl(PCIE1_LINK_CTRL) | 0x10, PCIE1_LINK_CTRL);
		while (1)
			if (readl(PCIE1_STATUS) & 0x1)
				break;
		writel(readl(PCIE1_LINK_CTRL) & ~0x10, PCIE1_LINK_CTRL);
	}
}

127 128 129
/* An extended version of the gated clk. This calls fn_en()/fn_dis
 * before enabling/disabling the clock.  We use this to turn on/off
 * PHYs etc.  */
130 131
struct clk_gate_fn {
	struct clk_gate gate;
132 133
	void (*fn_en)(void);
	void (*fn_dis)(void);
134 135 136 137 138
};

#define to_clk_gate_fn(_gate) container_of(_gate, struct clk_gate_fn, gate)
#define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)

139 140 141 142 143 144 145 146 147 148 149 150 151
static int clk_gate_fn_enable(struct clk_hw *hw)
{
	struct clk_gate *gate = to_clk_gate(hw);
	struct clk_gate_fn *gate_fn = to_clk_gate_fn(gate);
	int ret;

	ret = clk_gate_ops.enable(hw);
	if (!ret && gate_fn->fn_en)
		gate_fn->fn_en();

	return ret;
}

152 153 154 155 156
static void clk_gate_fn_disable(struct clk_hw *hw)
{
	struct clk_gate *gate = to_clk_gate(hw);
	struct clk_gate_fn *gate_fn = to_clk_gate_fn(gate);

157 158
	if (gate_fn->fn_dis)
		gate_fn->fn_dis();
159 160 161 162 163 164 165 166 167 168 169

	clk_gate_ops.disable(hw);
}

static struct clk_ops clk_gate_fn_ops;

static struct clk __init *clk_register_gate_fn(struct device *dev,
		const char *name,
		const char *parent_name, unsigned long flags,
		void __iomem *reg, u8 bit_idx,
		u8 clk_gate_flags, spinlock_t *lock,
170
		void (*fn_en)(void), void (*fn_dis)(void))
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
{
	struct clk_gate_fn *gate_fn;
	struct clk *clk;
	struct clk_init_data init;

	gate_fn = kzalloc(sizeof(struct clk_gate_fn), GFP_KERNEL);
	if (!gate_fn) {
		pr_err("%s: could not allocate gated clk\n", __func__);
		return ERR_PTR(-ENOMEM);
	}

	init.name = name;
	init.ops = &clk_gate_fn_ops;
	init.flags = flags;
	init.parent_names = (parent_name ? &parent_name : NULL);
	init.num_parents = (parent_name ? 1 : 0);

	/* struct clk_gate assignments */
	gate_fn->gate.reg = reg;
	gate_fn->gate.bit_idx = bit_idx;
	gate_fn->gate.flags = clk_gate_flags;
	gate_fn->gate.lock = lock;
	gate_fn->gate.hw.init = &init;
194 195
	gate_fn->fn_en = fn_en;
	gate_fn->fn_dis = fn_dis;
196

197 198 199
	/* ops is the gate ops, but with our enable/disable functions */
	if (clk_gate_fn_ops.enable != clk_gate_fn_enable ||
	    clk_gate_fn_ops.disable != clk_gate_fn_disable) {
200
		clk_gate_fn_ops = clk_gate_ops;
201
		clk_gate_fn_ops.enable = clk_gate_fn_enable;
202 203 204 205 206 207 208 209 210 211 212
		clk_gate_fn_ops.disable = clk_gate_fn_disable;
	}

	clk = clk_register(dev, &gate_fn->gate.hw);

	if (IS_ERR(clk))
		kfree(gate_fn);

	return clk;
}

213 214 215 216 217
static DEFINE_SPINLOCK(gating_lock);
static struct clk *tclk;

static struct clk __init *kirkwood_register_gate(const char *name, u8 bit_idx)
{
218
	return clk_register_gate(NULL, name, "tclk", 0,
219 220 221 222
				 (void __iomem *)CLOCK_GATING_CTRL,
				 bit_idx, 0, &gating_lock);
}

223 224
static struct clk __init *kirkwood_register_gate_fn(const char *name,
						    u8 bit_idx,
225 226
						    void (*fn_en)(void),
						    void (*fn_dis)(void))
227 228 229
{
	return clk_register_gate_fn(NULL, name, "tclk", 0,
				    (void __iomem *)CLOCK_GATING_CTRL,
230
				    bit_idx, 0, &gating_lock, fn_en, fn_dis);
231 232
}

233 234
static struct clk *ge0, *ge1;

235 236
void __init kirkwood_clk_init(void)
{
237
	struct clk *runit, *sata0, *sata1, *usb0, *sdio;
238
	struct clk *crypto, *xor0, *xor1, *pex0, *pex1, *audio;
239

240 241 242
	tclk = clk_register_fixed_rate(NULL, "tclk", NULL,
				       CLK_IS_ROOT, kirkwood_tclk);

243
	runit = kirkwood_register_gate("runit",  CGC_BIT_RUNIT);
244 245
	ge0 = kirkwood_register_gate("ge0",    CGC_BIT_GE0);
	ge1 = kirkwood_register_gate("ge1",    CGC_BIT_GE1);
246
	sata0 = kirkwood_register_gate_fn("sata0",  CGC_BIT_SATA0,
247
					  enable_sata0, disable_sata0);
248
	sata1 = kirkwood_register_gate_fn("sata1",  CGC_BIT_SATA1,
249
					  enable_sata1, disable_sata1);
250
	usb0 = kirkwood_register_gate("usb0",   CGC_BIT_USB0);
251
	sdio = kirkwood_register_gate("sdio",   CGC_BIT_SDIO);
252
	crypto = kirkwood_register_gate("crypto", CGC_BIT_CRYPTO);
253 254
	xor0 = kirkwood_register_gate("xor0",   CGC_BIT_XOR0);
	xor1 = kirkwood_register_gate("xor1",   CGC_BIT_XOR1);
255
	pex0 = kirkwood_register_gate_fn("pex0",   CGC_BIT_PEX0,
256
					 NULL, disable_pcie0);
257
	pex1 = kirkwood_register_gate_fn("pex1",   CGC_BIT_PEX1,
258
					 NULL, disable_pcie1);
259
	audio = kirkwood_register_gate("audio",  CGC_BIT_AUDIO);
260 261
	kirkwood_register_gate("tdm",    CGC_BIT_TDM);
	kirkwood_register_gate("tsu",    CGC_BIT_TSU);
262 263 264 265

	/* clkdev entries, mapping clks to devices */
	orion_clkdev_add(NULL, "orion_spi.0", runit);
	orion_clkdev_add(NULL, "orion_spi.1", runit);
266 267
	orion_clkdev_add(NULL, MV643XX_ETH_NAME ".0", ge0);
	orion_clkdev_add(NULL, MV643XX_ETH_NAME ".1", ge1);
268
	orion_clkdev_add(NULL, "orion_wdt", tclk);
269 270
	orion_clkdev_add("0", "sata_mv.0", sata0);
	orion_clkdev_add("1", "sata_mv.0", sata1);
271
	orion_clkdev_add(NULL, "orion-ehci.0", usb0);
272
	orion_clkdev_add(NULL, "orion_nand", runit);
273
	orion_clkdev_add(NULL, "mvsdio", sdio);
274
	orion_clkdev_add(NULL, "mv_crypto", crypto);
275 276
	orion_clkdev_add(NULL, MV_XOR_SHARED_NAME ".0", xor0);
	orion_clkdev_add(NULL, MV_XOR_SHARED_NAME ".1", xor1);
277 278
	orion_clkdev_add("0", "pcie", pex0);
	orion_clkdev_add("1", "pcie", pex1);
279
	orion_clkdev_add(NULL, "kirkwood-i2s", audio);
280
	orion_clkdev_add(NULL, MV64XXX_I2C_CTLR_NAME ".0", runit);
281 282 283 284 285

	/* Marvell says runit is used by SPI, UART, NAND, TWSI, ...,
	 * so should never be gated.
	 */
	clk_prepare_enable(runit);
286 287
}

288 289 290 291 292
/*****************************************************************************
 * EHCI0
 ****************************************************************************/
void __init kirkwood_ehci_init(void)
{
293
	orion_ehci_init(USB_PHYS_BASE, IRQ_KIRKWOOD_USB, EHCI_PHY_NA);
294 295 296 297 298 299 300 301
}


/*****************************************************************************
 * GE00
 ****************************************************************************/
void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data)
{
302
	orion_ge00_init(eth_data,
303
			GE00_PHYS_BASE, IRQ_KIRKWOOD_GE00_SUM,
304
			IRQ_KIRKWOOD_GE00_ERR);
305 306 307
	/* The interface forgets the MAC address assigned by u-boot if
	the clock is turned off, so claim the clk now. */
	clk_prepare_enable(ge0);
308 309 310
}


311 312 313 314 315
/*****************************************************************************
 * GE01
 ****************************************************************************/
void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data)
{
316
	orion_ge01_init(eth_data,
317
			GE01_PHYS_BASE, IRQ_KIRKWOOD_GE01_SUM,
318
			IRQ_KIRKWOOD_GE01_ERR);
319
	clk_prepare_enable(ge1);
320 321 322
}


323 324 325 326 327
/*****************************************************************************
 * Ethernet switch
 ****************************************************************************/
void __init kirkwood_ge00_switch_init(struct dsa_platform_data *d, int irq)
{
328
	orion_ge00_switch_init(d, irq);
329 330 331
}


332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
/*****************************************************************************
 * NAND flash
 ****************************************************************************/
static struct resource kirkwood_nand_resource = {
	.flags		= IORESOURCE_MEM,
	.start		= KIRKWOOD_NAND_MEM_PHYS_BASE,
	.end		= KIRKWOOD_NAND_MEM_PHYS_BASE +
				KIRKWOOD_NAND_MEM_SIZE - 1,
};

static struct orion_nand_data kirkwood_nand_data = {
	.cle		= 0,
	.ale		= 1,
	.width		= 8,
};

static struct platform_device kirkwood_nand_flash = {
	.name		= "orion_nand",
	.id		= -1,
	.dev		= {
		.platform_data	= &kirkwood_nand_data,
	},
	.resource	= &kirkwood_nand_resource,
	.num_resources	= 1,
};

void __init kirkwood_nand_init(struct mtd_partition *parts, int nr_parts,
			       int chip_delay)
{
	kirkwood_nand_data.parts = parts;
	kirkwood_nand_data.nr_parts = nr_parts;
	kirkwood_nand_data.chip_delay = chip_delay;
	platform_device_register(&kirkwood_nand_flash);
}

367 368 369 370 371 372 373 374
void __init kirkwood_nand_init_rnb(struct mtd_partition *parts, int nr_parts,
				   int (*dev_ready)(struct mtd_info *))
{
	kirkwood_nand_data.parts = parts;
	kirkwood_nand_data.nr_parts = nr_parts;
	kirkwood_nand_data.dev_ready = dev_ready;
	platform_device_register(&kirkwood_nand_flash);
}
375

376 377 378
/*****************************************************************************
 * SoC RTC
 ****************************************************************************/
379
static void __init kirkwood_rtc_init(void)
380
{
381
	orion_rtc_init(RTC_PHYS_BASE, IRQ_KIRKWOOD_RTC);
382 383 384 385 386 387 388 389
}


/*****************************************************************************
 * SATA
 ****************************************************************************/
void __init kirkwood_sata_init(struct mv_sata_platform_data *sata_data)
{
390
	orion_sata_init(sata_data, SATA_PHYS_BASE, IRQ_KIRKWOOD_SATA);
391 392 393
}


394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
/*****************************************************************************
 * SD/SDIO/MMC
 ****************************************************************************/
static struct resource mvsdio_resources[] = {
	[0] = {
		.start	= SDIO_PHYS_BASE,
		.end	= SDIO_PHYS_BASE + SZ_1K - 1,
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= IRQ_KIRKWOOD_SDIO,
		.end	= IRQ_KIRKWOOD_SDIO,
		.flags	= IORESOURCE_IRQ,
	},
};

410
static u64 mvsdio_dmamask = DMA_BIT_MASK(32);
411 412 413 414 415 416

static struct platform_device kirkwood_sdio = {
	.name		= "mvsdio",
	.id		= -1,
	.dev		= {
		.dma_mask = &mvsdio_dmamask,
417
		.coherent_dma_mask = DMA_BIT_MASK(32),
418 419 420 421 422 423 424 425 426 427
	},
	.num_resources	= ARRAY_SIZE(mvsdio_resources),
	.resource	= mvsdio_resources,
};

void __init kirkwood_sdio_init(struct mvsdio_platform_data *mvsdio_data)
{
	u32 dev, rev;

	kirkwood_pcie_id(&dev, &rev);
428
	if (rev == 0 && dev != MV88F6282_DEV_ID) /* catch all Kirkwood Z0's */
429 430 431 432 433 434 435 436
		mvsdio_data->clock = 100000000;
	else
		mvsdio_data->clock = 200000000;
	kirkwood_sdio.dev.platform_data = mvsdio_data;
	platform_device_register(&kirkwood_sdio);
}


437 438 439 440 441
/*****************************************************************************
 * SPI
 ****************************************************************************/
void __init kirkwood_spi_init()
{
442
	orion_spi_init(SPI_PHYS_BASE);
443 444 445
}


M
Martin Michlmayr 已提交
446 447 448 449 450
/*****************************************************************************
 * I2C
 ****************************************************************************/
void __init kirkwood_i2c_init(void)
{
451
	orion_i2c_init(I2C_PHYS_BASE, IRQ_KIRKWOOD_TWSI, 8);
M
Martin Michlmayr 已提交
452 453 454
}


455 456 457 458 459 460
/*****************************************************************************
 * UART0
 ****************************************************************************/

void __init kirkwood_uart0_init(void)
{
461
	orion_uart0_init(UART0_VIRT_BASE, UART0_PHYS_BASE,
462
			 IRQ_KIRKWOOD_UART_0, tclk);
463 464 465 466 467 468 469 470
}


/*****************************************************************************
 * UART1
 ****************************************************************************/
void __init kirkwood_uart1_init(void)
{
471
	orion_uart1_init(UART1_VIRT_BASE, UART1_PHYS_BASE,
472
			 IRQ_KIRKWOOD_UART_1, tclk);
473 474
}

475 476 477 478 479
/*****************************************************************************
 * Cryptographic Engines and Security Accelerator (CESA)
 ****************************************************************************/
void __init kirkwood_crypto_init(void)
{
480 481
	orion_crypto_init(CRYPTO_PHYS_BASE, KIRKWOOD_SRAM_PHYS_BASE,
			  KIRKWOOD_SRAM_SIZE, IRQ_KIRKWOOD_CRYPTO);
482 483 484
}


485 486 487
/*****************************************************************************
 * XOR0
 ****************************************************************************/
488
void __init kirkwood_xor0_init(void)
489
{
490
	orion_xor0_init(XOR0_PHYS_BASE, XOR0_HIGH_PHYS_BASE,
491
			IRQ_KIRKWOOD_XOR_00, IRQ_KIRKWOOD_XOR_01);
492 493 494 495 496 497
}


/*****************************************************************************
 * XOR1
 ****************************************************************************/
498
void __init kirkwood_xor1_init(void)
499
{
500 501
	orion_xor1_init(XOR1_PHYS_BASE, XOR1_HIGH_PHYS_BASE,
			IRQ_KIRKWOOD_XOR_10, IRQ_KIRKWOOD_XOR_11);
502 503 504
}


505 506 507
/*****************************************************************************
 * Watchdog
 ****************************************************************************/
508
void __init kirkwood_wdt_init(void)
509
{
510
	orion_wdt_init();
511 512 513
}


514 515 516
/*****************************************************************************
 * Time handling
 ****************************************************************************/
517 518 519 520 521
void __init kirkwood_init_early(void)
{
	orion_time_set_base(TIMER_VIRT_BASE);
}

522 523
int kirkwood_tclk;

524
static int __init kirkwood_find_tclk(void)
525
{
526 527 528
	u32 dev, rev;

	kirkwood_pcie_id(&dev, &rev);
529

530 531 532
	if (dev == MV88F6281_DEV_ID || dev == MV88F6282_DEV_ID)
		if (((readl(SAMPLE_AT_RESET) >> 21) & 1) == 0)
			return 200000000;
533

534 535 536
	return 166666667;
}

L
Li Jie 已提交
537
static void __init kirkwood_timer_init(void)
538
{
539
	kirkwood_tclk = kirkwood_find_tclk();
540 541 542

	orion_time_init(BRIDGE_VIRT_BASE, BRIDGE_INT_TIMER1_CLR,
			IRQ_KIRKWOOD_BRIDGE, kirkwood_tclk);
543 544 545 546 547 548
}

struct sys_timer kirkwood_timer = {
	.init = kirkwood_timer_init,
};

549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
/*****************************************************************************
 * Audio
 ****************************************************************************/
static struct resource kirkwood_i2s_resources[] = {
	[0] = {
		.start  = AUDIO_PHYS_BASE,
		.end    = AUDIO_PHYS_BASE + SZ_16K - 1,
		.flags  = IORESOURCE_MEM,
	},
	[1] = {
		.start  = IRQ_KIRKWOOD_I2S,
		.end    = IRQ_KIRKWOOD_I2S,
		.flags  = IORESOURCE_IRQ,
	},
};

static struct kirkwood_asoc_platform_data kirkwood_i2s_data = {
	.burst       = 128,
};

static struct platform_device kirkwood_i2s_device = {
	.name		= "kirkwood-i2s",
	.id		= -1,
	.num_resources	= ARRAY_SIZE(kirkwood_i2s_resources),
	.resource	= kirkwood_i2s_resources,
	.dev		= {
		.platform_data	= &kirkwood_i2s_data,
	},
};

579
static struct platform_device kirkwood_pcm_device = {
580
	.name		= "kirkwood-pcm-audio",
581 582 583
	.id		= -1,
};

584 585 586
void __init kirkwood_audio_init(void)
{
	platform_device_register(&kirkwood_i2s_device);
587
	platform_device_register(&kirkwood_pcm_device);
588
}
589 590 591 592

/*****************************************************************************
 * General
 ****************************************************************************/
593 594 595
/*
 * Identify device ID and revision.
 */
596
char * __init kirkwood_id(void)
597
{
598 599 600 601 602 603 604 605 606
	u32 dev, rev;

	kirkwood_pcie_id(&dev, &rev);

	if (dev == MV88F6281_DEV_ID) {
		if (rev == MV88F6281_REV_Z0)
			return "MV88F6281-Z0";
		else if (rev == MV88F6281_REV_A0)
			return "MV88F6281-A0";
607 608
		else if (rev == MV88F6281_REV_A1)
			return "MV88F6281-A1";
609 610 611 612 613 614 615
		else
			return "MV88F6281-Rev-Unsupported";
	} else if (dev == MV88F6192_DEV_ID) {
		if (rev == MV88F6192_REV_Z0)
			return "MV88F6192-Z0";
		else if (rev == MV88F6192_REV_A0)
			return "MV88F6192-A0";
616 617
		else if (rev == MV88F6192_REV_A1)
			return "MV88F6192-A1";
618 619 620 621 622
		else
			return "MV88F6192-Rev-Unsupported";
	} else if (dev == MV88F6180_DEV_ID) {
		if (rev == MV88F6180_REV_A0)
			return "MV88F6180-Rev-A0";
623 624
		else if (rev == MV88F6180_REV_A1)
			return "MV88F6180-Rev-A1";
625 626
		else
			return "MV88F6180-Rev-Unsupported";
627 628 629
	} else if (dev == MV88F6282_DEV_ID) {
		if (rev == MV88F6282_REV_A0)
			return "MV88F6282-Rev-A0";
630 631
		else if (rev == MV88F6282_REV_A1)
			return "MV88F6282-Rev-A1";
632 633
		else
			return "MV88F6282-Rev-Unsupported";
634 635
	} else {
		return "Device-Unknown";
636 637 638
	}
}

639
void __init kirkwood_l2_init(void)
640
{
641 642 643 644 645 646 647
#ifdef CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH
	writel(readl(L2_CONFIG_REG) | L2_WRITETHROUGH, L2_CONFIG_REG);
	feroceon_l2_init(1);
#else
	writel(readl(L2_CONFIG_REG) & ~L2_WRITETHROUGH, L2_CONFIG_REG);
	feroceon_l2_init(0);
#endif
648 649
}

650 651 652
void __init kirkwood_init(void)
{
	printk(KERN_INFO "Kirkwood: %s, TCLK=%d.\n",
653
		kirkwood_id(), kirkwood_tclk);
654

655 656 657 658 659 660 661 662
	/*
	 * Disable propagation of mbus errors to the CPU local bus,
	 * as this causes mbus errors (which can occur for example
	 * for PCI aborts) to throw CPU aborts, which we're not set
	 * up to deal with.
	 */
	writel(readl(CPU_CONFIG) & ~CPU_CONFIG_ERROR_PROP, CPU_CONFIG);

663 664 665
	kirkwood_setup_cpu_mbus();

#ifdef CONFIG_CACHE_FEROCEON_L2
666
	kirkwood_l2_init();
667
#endif
668

669 670 671
	/* Setup root of clk tree */
	kirkwood_clk_init();

672 673
	/* internal devices that every board has */
	kirkwood_rtc_init();
674
	kirkwood_wdt_init();
675 676
	kirkwood_xor0_init();
	kirkwood_xor1_init();
677
	kirkwood_crypto_init();
678 679 680 681

#ifdef CONFIG_KEXEC 
	kexec_reinit = kirkwood_enable_pcie;
#endif
682
}
683

684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
void kirkwood_restart(char mode, const char *cmd)
{
	/*
	 * Enable soft reset to assert RSTOUTn.
	 */
	writel(SOFT_RESET_OUT_EN, RSTOUTn_MASK);

	/*
	 * Assert soft reset.
	 */
	writel(SOFT_RESET, SYSTEM_SOFT_RESET);

	while (1)
		;
}