blob: b31f2856733d720a5659d8e4730320faf4959ba7 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-or-later */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * RTC I/O Bridge interfaces for CSR SiRFprimaII
4 * ARM access the registers of SYSRTC, GPSRTC and PWRC through this module
5 *
6 * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007 */
8#ifndef _SIRFSOC_RTC_IOBRG_H_
9#define _SIRFSOC_RTC_IOBRG_H_
10
11struct regmap_config;
12
13extern void sirfsoc_rtc_iobrg_besyncing(void);
14
15extern u32 sirfsoc_rtc_iobrg_readl(u32 addr);
16
17extern void sirfsoc_rtc_iobrg_writel(u32 val, u32 addr);
18struct regmap *devm_regmap_init_iobg(struct device *dev,
19 const struct regmap_config *config);
20
21#endif