blob: 169f99e38a2666450d84e8209559d7bf913aa1a4 [file] [log] [blame]
Brian Norris27c5b172015-03-06 11:38:08 -08001/*
2 * Copyright © 2015 Broadcom Corporation
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#ifndef __BRCMNAND_H__
15#define __BRCMNAND_H__
16
17#include <linux/types.h>
18#include <linux/io.h>
19
20struct platform_device;
21struct dev_pm_ops;
22
23struct brcmnand_soc {
24 struct platform_device *pdev;
25 void *priv;
Brian Norrisc26211d2015-05-12 12:09:28 -070026 bool (*ctlrdy_ack)(struct brcmnand_soc *soc);
27 void (*ctlrdy_set_enabled)(struct brcmnand_soc *soc, bool en);
28 void (*prepare_data_bus)(struct brcmnand_soc *soc, bool prepare);
Brian Norris27c5b172015-03-06 11:38:08 -080029};
30
Brian Norrisc26211d2015-05-12 12:09:28 -070031static inline void brcmnand_soc_data_bus_prepare(struct brcmnand_soc *soc)
32{
33 if (soc && soc->prepare_data_bus)
34 soc->prepare_data_bus(soc, true);
35}
36
37static inline void brcmnand_soc_data_bus_unprepare(struct brcmnand_soc *soc)
38{
39 if (soc && soc->prepare_data_bus)
40 soc->prepare_data_bus(soc, false);
41}
42
Brian Norris27c5b172015-03-06 11:38:08 -080043static inline u32 brcmnand_readl(void __iomem *addr)
44{
45 /*
46 * MIPS endianness is configured by boot strap, which also reverses all
47 * bus endianness (i.e., big-endian CPU + big endian bus ==> native
48 * endian I/O).
49 *
50 * Other architectures (e.g., ARM) either do not support big endian, or
51 * else leave I/O in little endian mode.
52 */
Axel Linddb2c422015-08-06 12:29:37 +080053 if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
Brian Norris27c5b172015-03-06 11:38:08 -080054 return __raw_readl(addr);
55 else
56 return readl_relaxed(addr);
57}
58
59static inline void brcmnand_writel(u32 val, void __iomem *addr)
60{
61 /* See brcmnand_readl() comments */
Axel Linddb2c422015-08-06 12:29:37 +080062 if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
Brian Norris27c5b172015-03-06 11:38:08 -080063 __raw_writel(val, addr);
64 else
65 writel_relaxed(val, addr);
66}
67
68int brcmnand_probe(struct platform_device *pdev, struct brcmnand_soc *soc);
69int brcmnand_remove(struct platform_device *pdev);
70
71extern const struct dev_pm_ops brcmnand_pm_ops;
72
73#endif /* __BRCMNAND_H__ */