keystone.c (818b26588994d9d95743fca0a427f08ec6c1c41d) | keystone.c (7e8edf55cf729367afdb5e9a8b182f1d47897800) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Keystone2 based boards and SOC related code. 4 * 5 * Copyright 2013 Texas Instruments, Inc. 6 * Cyril Chemparathy <cyril@ti.com> 7 * Santosh Shilimkar <santosh.shillimkar@ti.com> 8 */ --- 4 unchanged lines hidden (view full) --- 13#include <linux/of_platform.h> 14#include <linux/of_address.h> 15#include <linux/memblock.h> 16 17#include <asm/setup.h> 18#include <asm/mach/map.h> 19#include <asm/mach/arch.h> 20#include <asm/mach/time.h> | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Keystone2 based boards and SOC related code. 4 * 5 * Copyright 2013 Texas Instruments, Inc. 6 * Cyril Chemparathy <cyril@ti.com> 7 * Santosh Shilimkar <santosh.shillimkar@ti.com> 8 */ --- 4 unchanged lines hidden (view full) --- 13#include <linux/of_platform.h> 14#include <linux/of_address.h> 15#include <linux/memblock.h> 16 17#include <asm/setup.h> 18#include <asm/mach/map.h> 19#include <asm/mach/arch.h> 20#include <asm/mach/time.h> |
21#include <asm/smp_plat.h> | |
22#include <asm/memory.h> 23 24#include "memory.h" 25 26#include "keystone.h" 27 28#ifdef CONFIG_ARM_LPAE 29static int keystone_platform_notifier(struct notifier_block *nb, --- 68 unchanged lines hidden (view full) --- 98 "ti,keystone", 99 NULL, 100}; 101 102DT_MACHINE_START(KEYSTONE, "Keystone") 103#if defined(CONFIG_ZONE_DMA) && defined(CONFIG_ARM_LPAE) 104 .dma_zone_size = SZ_2G, 105#endif | 21#include <asm/memory.h> 22 23#include "memory.h" 24 25#include "keystone.h" 26 27#ifdef CONFIG_ARM_LPAE 28static int keystone_platform_notifier(struct notifier_block *nb, --- 68 unchanged lines hidden (view full) --- 97 "ti,keystone", 98 NULL, 99}; 100 101DT_MACHINE_START(KEYSTONE, "Keystone") 102#if defined(CONFIG_ZONE_DMA) && defined(CONFIG_ARM_LPAE) 103 .dma_zone_size = SZ_2G, 104#endif |
106 .smp = smp_ops(keystone_smp_ops), | |
107 .init_machine = keystone_init, 108 .dt_compat = keystone_match, 109 .pv_fixup = keystone_pv_fixup, 110MACHINE_END | 105 .init_machine = keystone_init, 106 .dt_compat = keystone_match, 107 .pv_fixup = keystone_pv_fixup, 108MACHINE_END |