summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-vexpress/devices.c
blob: 6ccce5261f28821e713ed78e8da45197bf5cc418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * Copyright (C) 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
 *
 * GPLv2 only
 */

#include <common.h>

#include <linux/amba/bus.h>

#include <asm/memory.h>

#include <mach/devices.h>

void vexpress_a9_legacy_add_ddram(u32 ddr0_size, u32 ddr1_size)
{
	arm_add_mem_device("ram0", 0x60000000, ddr0_size);

	if (ddr1_size)
		arm_add_mem_device("ram1", 0x80000000, ddr1_size);
}


void vexpress_a9_legacy_register_uart(unsigned id)
{
	resource_size_t start;

	switch (id) {
	case 0:
		start = 0x10009000;
		break;
	case 1:
		start = 0x1000a000;
		break;
	case 2:
		start = 0x1000b000;
		break;
	case 3:
		start = 0x1000c000;
		break;
	default:
		return;
	}
	amba_apb_device_add(NULL, "uart-pl011", id, start, 4096, NULL, 0);
}

void vexpress_add_ddram(u32 size)
{
	arm_add_mem_device("ram1", 0x80000000, size);
}

void vexpress_register_uart(unsigned id)
{
	resource_size_t start;

	switch (id) {
	case 0:
		start = 0x1c090000;
		break;
	case 1:
		start = 0x1c0a0000;
		break;
	case 2:
		start = 0x1c0b0000;
		break;
	case 3:
		start = 0x1c0c0000;
		break;
	default:
		return;
	}
	amba_apb_device_add(NULL, "uart-pl011", id, start, 4096, NULL, 0);
}