forked from Mirrors/opensbi

Currently, the platform's timer device is tracked in two places: the core SBI implementation has `timer_dev`, and the FDT timer layer has `current_driver`. The latter is used for warm initialization of the timer device. However, this warm init is not specific to FDT-based platforms; other platforms call exactly the same functions from the same point in the boot sequence. The code is simplified and made common across platforms by treating warm init and exit as properties of the driver, not the platform. Then the platform's only role is to select and prepare a driver during cold boot. For now, only add a .warm_init hook, since none of the existing drivers need an .exit hook. It could be added in the future if needed. Signed-off-by: Samuel Holland <samuel.holland@sifive.com> Reviewed-by: Anup Patel <anup@brainfault.org>
29 lines
603 B
C
29 lines
603 B
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2022 Andes Technology Corporation
|
|
*
|
|
* Authors:
|
|
* Zong Li <zong@andestech.com>
|
|
* Nylon Chen <nylon7@andestech.com>
|
|
* Yu Chien Peter Lin <peterlin@andestech.com>
|
|
*/
|
|
|
|
#ifndef __TIMER_ANDES_PLMT_H__
|
|
#define __TIMER_ANDES_PLMT_H__
|
|
|
|
#define DEFAULT_AE350_PLMT_FREQ 60000000
|
|
#define PLMT_REGION_ALIGN 0x1000
|
|
|
|
struct plmt_data {
|
|
u32 hart_count;
|
|
unsigned long size;
|
|
unsigned long timer_freq;
|
|
volatile u64 *time_val;
|
|
volatile u64 *time_cmp;
|
|
};
|
|
|
|
int plmt_cold_timer_init(struct plmt_data *plmt);
|
|
|
|
#endif /* __TIMER_ANDES_PLMT_H__ */
|