Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e31e4505 authored by Yang Ling's avatar Yang Ling Committed by Ralf Baechle
Browse files

MIPS: Loongson1: Remove several redundant RTC-related macros



Move the RTC-related macros to regs-rtc.h.

Signed-off-by: default avatarYang Ling <gnaygnil@gmail.com>
Cc: keguang.zhang@gmail.com
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/14642/


Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 3ae34beb
Loading
Loading
Loading
Loading
+4 −3
Original line number Original line Diff line number Diff line
@@ -52,6 +52,7 @@
#include <regs-clk.h>
#include <regs-clk.h>
#include <regs-mux.h>
#include <regs-mux.h>
#include <regs-pwm.h>
#include <regs-pwm.h>
#include <regs-rtc.h>
#include <regs-wdt.h>
#include <regs-wdt.h>


#endif /* __ASM_MACH_LOONGSON32_LOONGSON1_H */
#endif /* __ASM_MACH_LOONGSON32_LOONGSON1_H */
+23 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (c) 2016 Yang Ling <gnaygnil@gmail.com>
 *
 * Loongson 1 RTC timer Register Definitions.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 */

#ifndef __ASM_MACH_LOONGSON32_REGS_RTC_H
#define __ASM_MACH_LOONGSON32_REGS_RTC_H

#define LS1X_RTC_REG(x) \
		((void __iomem *)KSEG1ADDR(LS1X_RTC_BASE + (x)))

#define LS1X_RTC_CTRL	LS1X_RTC_REG(0x40)

#define RTC_EXTCLK_OK	(BIT(5) | BIT(8))
#define RTC_EXTCLK_EN	BIT(8)

#endif /* __ASM_MACH_LOONGSON32_REGS_RTC_H */
+11 −16
Original line number Original line Diff line number Diff line
@@ -23,10 +23,6 @@
#include <dma.h>
#include <dma.h>
#include <nand.h>
#include <nand.h>


#define LS1X_RTC_CTRL	((void __iomem *)KSEG1ADDR(LS1X_RTC_BASE + 0x40))
#define RTC_EXTCLK_OK	(BIT(5) | BIT(8))
#define RTC_EXTCLK_EN	BIT(8)

/* 8250/16550 compatible UART */
/* 8250/16550 compatible UART */
#define LS1X_UART(_id)						\
#define LS1X_UART(_id)						\
	{							\
	{							\
@@ -70,15 +66,6 @@ void __init ls1x_serial_set_uartclk(struct platform_device *pdev)
		p->uartclk = clk_get_rate(clk);
		p->uartclk = clk_get_rate(clk);
}
}


void __init ls1x_rtc_set_extclk(struct platform_device *pdev)
{
	u32 val;

	val = __raw_readl(LS1X_RTC_CTRL);
	if (!(val & RTC_EXTCLK_OK))
		__raw_writel(val | RTC_EXTCLK_EN, LS1X_RTC_CTRL);
}

/* CPUFreq */
/* CPUFreq */
static struct plat_ls1x_cpufreq ls1x_cpufreq_pdata = {
static struct plat_ls1x_cpufreq ls1x_cpufreq_pdata = {
	.clk_name	= "cpu_clk",
	.clk_name	= "cpu_clk",
@@ -357,6 +344,14 @@ struct platform_device ls1x_ehci_pdev = {
};
};


/* Real Time Clock */
/* Real Time Clock */
void __init ls1x_rtc_set_extclk(struct platform_device *pdev)
{
	u32 val = __raw_readl(LS1X_RTC_CTRL);

	if (!(val & RTC_EXTCLK_OK))
		__raw_writel(val | RTC_EXTCLK_EN, LS1X_RTC_CTRL);
}

struct platform_device ls1x_rtc_pdev = {
struct platform_device ls1x_rtc_pdev = {
	.name		= "ls1x-rtc",
	.name		= "ls1x-rtc",
	.id		= -1,
	.id		= -1,