mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 17:23:55 +08:00
367f4acc69
After transitioning the CLCD to use DRM we can now kill off the final piece of auxdata on the NSPIRE. Link: https://lore.kernel.org/r/20190810075023.7327-1-linus.walleij@linaro.org Cc: Daniel Tang <dt.tangr@gmail.com> Cc: Fabian Vogt <fabian@ritter-vogt.de> Tested-by: Fabian Vogt <fabian@ritter-vogt.de> Acked-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
43 lines
916 B
C
43 lines
916 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* linux/arch/arm/mach-nspire/nspire.c
|
|
*
|
|
* Copyright (C) 2013 Daniel Tang <tangrs@tangrs.id.au>
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/of_irq.h>
|
|
#include <linux/of_address.h>
|
|
#include <linux/of_platform.h>
|
|
#include <linux/irqchip.h>
|
|
#include <linux/irqchip/arm-vic.h>
|
|
#include <linux/clkdev.h>
|
|
#include <linux/amba/bus.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
#include <asm/mach-types.h>
|
|
#include <asm/mach/map.h>
|
|
|
|
#include "mmio.h"
|
|
|
|
static const char *const nspire_dt_match[] __initconst = {
|
|
"ti,nspire",
|
|
"ti,nspire-cx",
|
|
"ti,nspire-tp",
|
|
"ti,nspire-clp",
|
|
NULL,
|
|
};
|
|
|
|
static void nspire_restart(enum reboot_mode mode, const char *cmd)
|
|
{
|
|
void __iomem *base = ioremap(NSPIRE_MISC_PHYS_BASE, SZ_4K);
|
|
if (!base)
|
|
return;
|
|
|
|
writel(2, base + NSPIRE_MISC_HWRESET);
|
|
}
|
|
|
|
DT_MACHINE_START(NSPIRE, "TI-NSPIRE")
|
|
.dt_compat = nspire_dt_match,
|
|
.restart = nspire_restart,
|
|
MACHINE_END
|