blob: a28c14c1ebf2c17735c122efe1de2d91840f1c68 [file] [log] [blame]
Rick Chen73766772019-04-02 15:56:40 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019, Rick Chen <rick@andestech.com>
Sean Anderson87e6ce52020-09-28 10:52:24 -04004 * Copyright (C) 2020, Sean Anderson <seanga2@gmail.com>
Rick Chen73766772019-04-02 15:56:40 +08005 *
6 * U-Boot syscon driver for Andes's Platform Level Machine Timer (PLMT).
7 * The PLMT block holds memory-mapped mtime register
8 * associated with timer tick.
9 */
10
11#include <common.h>
12#include <dm.h>
Sean Anderson87e6ce52020-09-28 10:52:24 -040013#include <timer.h>
Rick Chen73766772019-04-02 15:56:40 +080014#include <asm/io.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070015#include <linux/err.h>
Rick Chen73766772019-04-02 15:56:40 +080016
17/* mtime register */
18#define MTIME_REG(base) ((ulong)(base))
19
Sean Anderson87e6ce52020-09-28 10:52:24 -040020static int andes_plmt_get_count(struct udevice *dev, u64 *count)
21{
22 *count = readq((void __iomem *)MTIME_REG(dev->priv));
Rick Chen73766772019-04-02 15:56:40 +080023
Sean Anderson87e6ce52020-09-28 10:52:24 -040024 return 0;
25}
Rick Chen73766772019-04-02 15:56:40 +080026
Sean Anderson87e6ce52020-09-28 10:52:24 -040027static const struct timer_ops andes_plmt_ops = {
28 .get_count = andes_plmt_get_count,
29};
Rick Chen73766772019-04-02 15:56:40 +080030
Sean Anderson87e6ce52020-09-28 10:52:24 -040031static int andes_plmt_probe(struct udevice *dev)
32{
33 dev->priv = dev_read_addr_ptr(dev);
34 if (!dev->priv)
35 return -EINVAL;
Rick Chen73766772019-04-02 15:56:40 +080036
Sean Anderson87e6ce52020-09-28 10:52:24 -040037 return timer_timebase_fallback(dev);
Rick Chen73766772019-04-02 15:56:40 +080038}
39
40static const struct udevice_id andes_plmt_ids[] = {
Sean Anderson87e6ce52020-09-28 10:52:24 -040041 { .compatible = "riscv,plmt0" },
Rick Chen73766772019-04-02 15:56:40 +080042 { }
43};
44
45U_BOOT_DRIVER(andes_plmt) = {
46 .name = "andes_plmt",
Sean Anderson87e6ce52020-09-28 10:52:24 -040047 .id = UCLASS_TIMER,
Rick Chen73766772019-04-02 15:56:40 +080048 .of_match = andes_plmt_ids,
Sean Anderson87e6ce52020-09-28 10:52:24 -040049 .ops = &andes_plmt_ops,
50 .probe = andes_plmt_probe,
Rick Chen73766772019-04-02 15:56:40 +080051 .flags = DM_FLAG_PRE_RELOC,
52};