diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-09 22:50:09 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-04-09 22:52:11 +0200 |
commit | a1faef961b2073e82900166031b77a400ac513fb (patch) | |
tree | 449ab2a2f4298d7c79285d3830a2cdb73833a040 /arch/arm/common/firmware.c | |
parent | cb63c0290c3914a0f1ef6e2ff5bf1a1724097d80 (diff) | |
parent | beddf63fc8e01f06799bd6d7a2dd879885bbc9c6 (diff) |
Merge tag 'secure-exynos-for-v3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into next/firmware
From Kukjin Kim <kgene.kim@samsung.com>:
add support secure firmware for exynos
* tag 'secure-exynos-for-v3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung:
ARM: EXYNOS: Add secure firmware support to secondary CPU bring-up
ARM: EXYNOS: Add IO mapping for non-secure SYSRAM.
ARM: EXYNOS: Add support for Exynos secure firmware
ARM: EXYNOS: Add support for secure monitor calls
ARM: Add interface for registering and calling firmware-specific operations
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/common/firmware.c')
-rw-r--r-- | arch/arm/common/firmware.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/common/firmware.c b/arch/arm/common/firmware.c new file mode 100644 index 00000000000..27ddccb1131 --- /dev/null +++ b/arch/arm/common/firmware.c @@ -0,0 +1,18 @@ +/* + * Copyright (C) 2012 Samsung Electronics. + * Kyungmin Park <kyungmin.park@samsung.com> + * Tomasz Figa <t.figa@samsung.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#include <linux/kernel.h> +#include <linux/suspend.h> + +#include <asm/firmware.h> + +static const struct firmware_ops default_firmware_ops; + +const struct firmware_ops *firmware_ops = &default_firmware_ops; |