https://github.com/torvalds/linux
Revision 0a91330b2af9f71ceeeed483f92774182b58f6d9 authored by Yash Shah on 19 February 2020, 03:49:07 UTC, committed by Palmer Dabbelt on 05 March 2020, 20:27:10 UTC
Add the ability to reboot the HiFive Unleashed board via GPIO.

Signed-off-by: Yash Shah <yash.shah@sifive.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
1 parent d2047ab
Raw File
Tip revision: 0a91330b2af9f71ceeeed483f92774182b58f6d9 authored by Yash Shah on 19 February 2020, 03:49:07 UTC
riscv: dts: Add GPIO reboot method to HiFive Unleashed DTS file
Tip revision: 0a91330
irq_regs.c
// SPDX-License-Identifier: GPL-2.0-or-later
/* saved per-CPU IRQ register pointer
 *
 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 */
#include <linux/export.h>
#include <linux/percpu.h>
#include <asm/irq_regs.h>

#ifndef ARCH_HAS_OWN_IRQ_REGS
DEFINE_PER_CPU(struct pt_regs *, __irq_regs);
EXPORT_PER_CPU_SYMBOL(__irq_regs);
#endif
back to top