Received: by 10.213.65.68 with SMTP id h4csp1060602imn; Sun, 18 Mar 2018 12:57:46 -0700 (PDT) X-Google-Smtp-Source: AG47ELsIyo8e7YeCGd0FuYfDsRwmAsWGy3Uyk6Eous/Rooalejs+7VmsDVzfLnKPY3mh+b/GXbMm X-Received: by 2002:a17:902:2468:: with SMTP id m37-v6mr9637683plg.388.1521403066656; Sun, 18 Mar 2018 12:57:46 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1521403066; cv=none; d=google.com; s=arc-20160816; b=m2/4poEE1qwkx/JR15d5LCX0XzLoNQQVZ7EkRWHrayNFH1HWAhhd8W0WqxNTf2/WrJ vAtdzV81ehvVYJy+8Eii+M/Z3Q4Q4BZnwOxLBug1P8xeObr6gOuQoHOZhH+OiUSHB/Ea yz/poF/sZpR1EcKHgzJQCsCpYixoRAvO1Bfg4tXcWJfRB97mF5ACQrSVMZZAJ2/h/rj1 eXyfZcyL8QPc6zAuStdhadnnIDVzSYSx9ti09TXRXD+xR3e6gDR1mJclBreLIKylta9e tcxJvAi+kEolHCaFtX3dJtp8Sug772J1WJX8AKYTndLIr/LbNbdHzmy05MKmpWwUZudO hqUA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=S/l77FS1RA6nKaTaIUuKwrq9BydOHfSSHqnjmFtDpb8=; b=yIskCrRlF43EkBikXNR8PgfT/u36i9j+RvhVRTemdBB3uqZc948EKAiy7TlNcPhsu2 cJwgzh6r2W/9s+93rPPEXOuoLbCS3fAEUA6RheZhICtS0EUHNigfKG8BUn6pQTkm6J4w IPH2c9QzvyvYc68dFQQWxJQjry1xy3X/I0tpMy1gW3RHHETTcFtE17MC2VWPSVFyvvW7 giHFHKHEH+Tjru/Bn4PHKnByygeu8VhJ/R0GH6wc+rqssRRIu+3n9k4vQKICWIfc9h9i tGydCNcOM4wFY5Ej4w7BdWL06C5u/vg7tDjV3n2j2+5oLwuuj9m/nUarwvKY6EKtHjOQ NP5Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id w16-v6si7336537plp.621.2018.03.18.12.57.32; Sun, 18 Mar 2018 12:57:46 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754615AbeCRTw5 (ORCPT + 99 others); Sun, 18 Mar 2018 15:52:57 -0400 Received: from smtp2200-217.mail.aliyun.com ([121.197.200.217]:32878 "EHLO smtp2200-217.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754141AbeCRTww (ORCPT ); Sun, 18 Mar 2018 15:52:52 -0400 X-Alimail-AntiSpam: AC=CONTINUE;BC=0.02449268|-1;CH=blue;FP=0|0|0|0|0|-1|-1|-1;HT=e02c03290;MF=ren_guo@c-sky.com;NM=1;PH=DS;RN=11;RT=11;SR=0;TI=SMTPD_---.BMBxZ-d_1521402742; Received: from localhost(mailfrom:ren_guo@c-sky.com fp:183.159.50.56) by smtp.aliyun-inc.com(10.147.42.253); Mon, 19 Mar 2018 03:52:22 +0800 From: Guo Ren To: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, tglx@linutronix.de, daniel.lezcano@linaro.org, jason@lakedaemon.net, arnd@arndb.de Cc: c-sky_gcc_upstream@c-sky.com, gnu-csky@mentor.com, thomas.petazzoni@bootlin.com, wbx@uclibc-ng.org, Guo Ren Subject: [PATCH 18/19] clocksource: add timer-nationalchip.c Date: Mon, 19 Mar 2018 03:51:40 +0800 Message-Id: <04f5a0702fc14e934e6f5a456cad8682d0b15aa2.1521399976.git.ren_guo@c-sky.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Guo Ren --- drivers/clocksource/Makefile | 1 + drivers/clocksource/timer-nationalchip.c | 149 +++++++++++++++++++++++++++++++ 2 files changed, 150 insertions(+) create mode 100644 drivers/clocksource/timer-nationalchip.c diff --git a/drivers/clocksource/Makefile b/drivers/clocksource/Makefile index d6dec44..d091712 100644 --- a/drivers/clocksource/Makefile +++ b/drivers/clocksource/Makefile @@ -76,3 +76,4 @@ obj-$(CONFIG_H8300_TMR16) += h8300_timer16.o obj-$(CONFIG_H8300_TPU) += h8300_tpu.o obj-$(CONFIG_CLKSRC_ST_LPC) += clksrc_st_lpc.o obj-$(CONFIG_X86_NUMACHIP) += numachip.o +obj-$(CONFIG_CSKY) += timer-nationalchip.o diff --git a/drivers/clocksource/timer-nationalchip.c b/drivers/clocksource/timer-nationalchip.c new file mode 100644 index 0000000..1279d64 --- /dev/null +++ b/drivers/clocksource/timer-nationalchip.c @@ -0,0 +1,149 @@ +// SPDX-License-Identifier: GPL-2.0 +// Copyright (C) 2018 Hangzhou NationalChip Science & Technology Co.,Ltd. +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define NC_VA_COUNTER_1_STATUS (void *)(timer_reg + 0x00) +#define NC_VA_COUNTER_1_VALUE (void *)(timer_reg + 0x04) +#define NC_VA_COUNTER_1_CONTROL (void *)(timer_reg + 0x10) +#define NC_VA_COUNTER_1_CONFIG (void *)(timer_reg + 0x20) +#define NC_VA_COUNTER_1_PRE (void *)(timer_reg + 0x24) +#define NC_VA_COUNTER_1_INI (void *)(timer_reg + 0x28) +#define NC_VA_COUNTER_2_STATUS (void *)(timer_reg + 0x40) +#define NC_VA_COUNTER_2_VALUE (void *)(timer_reg + 0x44) +#define NC_VA_COUNTER_2_CONTROL (void *)(timer_reg + 0x50) +#define NC_VA_COUNTER_2_CONFIG (void *)(timer_reg + 0x60) +#define NC_VA_COUNTER_2_PRE (void *)(timer_reg + 0x64) +#define NC_VA_COUNTER_2_INI (void *)(timer_reg + 0x68) +#define NC_VA_COUNTER_3_STATUS (void *)(timer_reg + 0x80) +#define NC_VA_COUNTER_3_VALUE (void *)(timer_reg + 0x84) +#define NC_VA_COUNTER_3_CONTROL (void *)(timer_reg + 0x90) +#define NC_VA_COUNTER_3_CONFIG (void *)(timer_reg + 0xa0) +#define NC_VA_COUNTER_3_PRE (void *)(timer_reg + 0xa4) +#define NC_VA_COUNTER_3_INI (void *)(timer_reg + 0xa8) + +static unsigned int timer_reg; + +static inline void timer_reset(void) +{ + __raw_writel(0x1, NC_VA_COUNTER_1_CONTROL); + __raw_writel(0x0, NC_VA_COUNTER_1_CONTROL); + __raw_writel(0x3, NC_VA_COUNTER_1_CONFIG); + __raw_writel(26, NC_VA_COUNTER_1_PRE); +} + +static irqreturn_t timer_interrupt(int irq, void *dev_id) +{ + struct clock_event_device *dev = (struct clock_event_device *) dev_id; + + __raw_writel(1, NC_VA_COUNTER_1_STATUS); + + dev->event_handler(dev); + + return IRQ_HANDLED; +} + +static int nc_timer_set_periodic(struct clock_event_device *dev) +{ + timer_reset(); + + __raw_writel(0xFFFFD8EF, NC_VA_COUNTER_1_INI); + __raw_writel(0x2, NC_VA_COUNTER_1_CONTROL); + + return 0; +} + +static int nc_timer_set_next_event(unsigned long delta, struct clock_event_device *evt) +{ + __raw_writel(0x1, NC_VA_COUNTER_1_CONTROL); + __raw_writel(ULONG_MAX - delta, NC_VA_COUNTER_1_INI); + __raw_writel(0x2, NC_VA_COUNTER_1_CONTROL); + return 0; +} + +static int nc_timer_shutdown(struct clock_event_device *dev) +{ + __raw_writel(0x0, NC_VA_COUNTER_1_CONTROL); + __raw_writel(0x0, NC_VA_COUNTER_1_CONFIG); + + return 0; +} + +static struct clock_event_device nc_ced = { + .name = "nationalchip-clkevent", + .features = CLOCK_EVT_FEAT_PERIODIC + | CLOCK_EVT_FEAT_ONESHOT, + .rating = 200, + .set_state_shutdown = nc_timer_shutdown, + .set_state_periodic = nc_timer_set_periodic, + .set_next_event = nc_timer_set_next_event, +}; + +static u64 notrace nc_sched_clock_read(void) +{ + return (u64) __raw_readl(NC_VA_COUNTER_2_VALUE); +} + +static void nc_csd_enable(void) +{ + __raw_writel(0x1, NC_VA_COUNTER_2_CONTROL); + __raw_writel(0x0, NC_VA_COUNTER_2_CONTROL); + __raw_writel(0x1, NC_VA_COUNTER_2_CONFIG); + + __raw_writel(26,NC_VA_COUNTER_2_PRE); + __raw_writel(0, NC_VA_COUNTER_2_INI); + __raw_writel(0x2, NC_VA_COUNTER_2_CONTROL); +} + +static int __init nc_timer_init(struct device_node *np) +{ + unsigned int irq; + unsigned int freq; + + /* parse from devicetree */ + timer_reg = (unsigned int) of_iomap(np, 0); + if (!timer_reg) + panic("%s, of_iomap err.\n", __func__); + + irq = irq_of_parse_and_map(np, 0); + if (!irq) + panic("%s, irq_parse err.\n", __func__); + + if (of_property_read_u32(np, "clock-frequency", &freq)) + panic("%s, clock-frequency error.\n", __func__); + + pr_info("Nationalchip Timer Init, reg: %x, irq: %d, freq: %d.\n", + timer_reg, irq, freq); + + /* setup irq */ + if (request_irq(irq, timer_interrupt, IRQF_TIMER, np->name, &nc_ced)) + panic("%s timer_interrupt error.\n", __func__); + + /* register */ + clockevents_config_and_register(&nc_ced, freq, 1, ULONG_MAX); + + nc_csd_enable(); + clocksource_mmio_init(NC_VA_COUNTER_2_VALUE, "nationalchip-clksource", freq, 200, 32, clocksource_mmio_readl_up); + + sched_clock_register(nc_sched_clock_read, 32, freq); + + return 0; +} +CLOCKSOURCE_OF_DECLARE(nc_timer, "nationalchip,timer-v1", nc_timer_init); + -- 2.7.4