David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * linux/arch/arm/mach-omap2/common.c |
| 4 | * |
| 5 | * Code common to all OMAP2+ machines. |
| 6 | * |
| 7 | * Copyright (C) 2009 Texas Instruments |
| 8 | * Copyright (C) 2010 Nokia Corporation |
| 9 | * Tony Lindgren <tony@atomide.com> |
| 10 | * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 11 | */ |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/init.h> |
| 14 | |
| 15 | #include "common.h" |
| 16 | #include "omap-secure.h" |
| 17 | |
| 18 | /* |
| 19 | * Stub function for OMAP2 so that common files |
| 20 | * continue to build when custom builds are used |
| 21 | */ |
| 22 | int __weak omap_secure_ram_reserve_memblock(void) |
| 23 | { |
| 24 | return 0; |
| 25 | } |
| 26 | |
| 27 | void __init omap_reserve(void) |
| 28 | { |
| 29 | omap_secure_ram_reserve_memblock(); |
| 30 | omap_barrier_reserve_memblock(); |
| 31 | } |