mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
e86463f8e3
This converts the PLMT driver from the riscv-specific timer interface to be a DM-based UCLASS_TIMER driver. The clock-frequency/clocks properties are preferred over timebase-frequency for two reasons. First, properties which affect a device should be located near its binding in the device tree. Using timebase-frequency only really makes sense when the cpu itself is the timer device. This is the case when we read the time from a CSR, but not when there is a separate device. Second, it lets the device use the clock subsystem which adds flexibility. If the device is configured for a different clock speed, the timer can adjust itself. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Rick Chen <rick@andestech.com>
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2002
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
*
|
|
* Copyright (c) 2017 Microsemi Corporation.
|
|
* Padmarao Begari, Microsemi Corporation <padmarao.begari@microsemi.com>
|
|
*/
|
|
|
|
#ifndef __ASM_GBL_DATA_H
|
|
#define __ASM_GBL_DATA_H
|
|
|
|
#include <asm/smp.h>
|
|
#include <asm/u-boot.h>
|
|
#include <compiler.h>
|
|
|
|
/* Architecture-specific global data */
|
|
struct arch_global_data {
|
|
long boot_hart; /* boot hart id */
|
|
phys_addr_t firmware_fdt_addr;
|
|
#ifdef CONFIG_SIFIVE_CLINT
|
|
void __iomem *clint; /* clint base address */
|
|
#endif
|
|
#ifdef CONFIG_ANDES_PLIC
|
|
void __iomem *plic; /* plic base address */
|
|
#endif
|
|
#if CONFIG_IS_ENABLED(SMP)
|
|
struct ipi_data ipi[CONFIG_NR_CPUS];
|
|
#endif
|
|
#ifndef CONFIG_XIP
|
|
ulong available_harts;
|
|
#endif
|
|
};
|
|
|
|
#include <asm-generic/global_data.h>
|
|
|
|
#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("gp")
|
|
|
|
static inline void set_gd(volatile gd_t *gd_ptr)
|
|
{
|
|
#ifdef CONFIG_64BIT
|
|
asm volatile("ld gp, %0\n" : : "m"(gd_ptr));
|
|
#else
|
|
asm volatile("lw gp, %0\n" : : "m"(gd_ptr));
|
|
#endif
|
|
}
|
|
|
|
#endif /* __ASM_GBL_DATA_H */
|