Merge tag 'usb-ci-v4.4-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/peter...
[deliverable/linux.git] / arch / arm / mach-keystone / keystone.c
CommitLineData
828989ad
SS
1/*
2 * Keystone2 based boards and SOC related code.
3 *
4 * Copyright 2013 Texas Instruments, Inc.
5 * Cyril Chemparathy <cyril@ti.com>
6 * Santosh Shilimkar <santosh.shillimkar@ti.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
11 */
12#include <linux/io.h>
13#include <linux/of.h>
14#include <linux/init.h>
15#include <linux/of_platform.h>
16#include <linux/of_address.h>
bbea06f3 17#include <linux/memblock.h>
828989ad
SS
18
19#include <asm/setup.h>
20#include <asm/mach/map.h>
21#include <asm/mach/arch.h>
22#include <asm/mach/time.h>
f07cb6a0 23#include <asm/smp_plat.h>
5eb3da72
SS
24#include <asm/memory.h>
25
26#include "memory.h"
f07cb6a0
SS
27
28#include "keystone.h"
828989ad 29
14f37914
SS
30static unsigned long keystone_dma_pfn_offset __read_mostly;
31
32static int keystone_platform_notifier(struct notifier_block *nb,
33 unsigned long event, void *data)
34{
35 struct device *dev = data;
36
37 if (event != BUS_NOTIFY_ADD_DEVICE)
38 return NOTIFY_DONE;
39
40 if (!dev)
41 return NOTIFY_BAD;
42
43 if (!dev->of_node) {
44 dev->dma_pfn_offset = keystone_dma_pfn_offset;
45 dev_err(dev, "set dma_pfn_offset%08lx\n",
46 dev->dma_pfn_offset);
47 }
48 return NOTIFY_OK;
49}
828989ad 50
30b5f4d6
RK
51static struct notifier_block platform_nb = {
52 .notifier_call = keystone_platform_notifier,
53};
54
828989ad
SS
55static void __init keystone_init(void)
56{
30b5f4d6
RK
57 if (PHYS_OFFSET >= KEYSTONE_HIGH_PHYS_START) {
58 keystone_dma_pfn_offset = PFN_DOWN(KEYSTONE_HIGH_PHYS_START -
59 KEYSTONE_LOW_PHYS_START);
14f37914 60 bus_register_notifier(&platform_bus_type, &platform_nb);
30b5f4d6
RK
61 }
62 keystone_pm_runtime_init();
828989ad
SS
63 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
64}
65
5eb3da72
SS
66static phys_addr_t keystone_virt_to_idmap(unsigned long x)
67{
68 return (phys_addr_t)(x) - CONFIG_PAGE_OFFSET + KEYSTONE_LOW_PHYS_START;
69}
70
c0b759d8 71static long long __init keystone_pv_fixup(void)
5eb3da72 72{
c8ca2b4b 73 long long offset;
5eb3da72
SS
74 phys_addr_t mem_start, mem_end;
75
bbea06f3
SS
76 mem_start = memblock_start_of_DRAM();
77 mem_end = memblock_end_of_DRAM();
5eb3da72
SS
78
79 /* nothing to do if we are running out of the <32-bit space */
80 if (mem_start >= KEYSTONE_LOW_PHYS_START &&
81 mem_end <= KEYSTONE_LOW_PHYS_END)
c8ca2b4b 82 return 0;
5eb3da72
SS
83
84 if (mem_start < KEYSTONE_HIGH_PHYS_START ||
85 mem_end > KEYSTONE_HIGH_PHYS_END) {
86 pr_crit("Invalid address space for memory (%08llx-%08llx)\n",
c8ca2b4b
RK
87 (u64)mem_start, (u64)mem_end);
88 return 0;
5eb3da72
SS
89 }
90
c8ca2b4b 91 offset = KEYSTONE_HIGH_PHYS_START - KEYSTONE_LOW_PHYS_START;
5eb3da72
SS
92
93 /* Populate the arch idmap hook */
94 arch_virt_to_idmap = keystone_virt_to_idmap;
95
c8ca2b4b 96 return offset;
5eb3da72
SS
97}
98
543c5040 99static const char *const keystone_match[] __initconst = {
01cf228b
NM
100 "ti,k2hk",
101 "ti,k2e",
102 "ti,k2l",
3babe306 103 "ti,keystone",
828989ad
SS
104 NULL,
105};
106
828989ad 107DT_MACHINE_START(KEYSTONE, "Keystone")
df595a9d
SS
108#if defined(CONFIG_ZONE_DMA) && defined(CONFIG_ARM_LPAE)
109 .dma_zone_size = SZ_2G,
110#endif
f07cb6a0 111 .smp = smp_ops(keystone_smp_ops),
828989ad
SS
112 .init_machine = keystone_init,
113 .dt_compat = keystone_match,
c0b759d8 114 .pv_fixup = keystone_pv_fixup,
828989ad 115MACHINE_END
This page took 0.116709 seconds and 5 git commands to generate.