hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright © 2015 Broadcom Corporation
 */
 
#ifndef __BRCMNAND_H__
#define __BRCMNAND_H__
 
#include <linux/types.h>
#include <linux/io.h>
 
struct platform_device;
struct dev_pm_ops;
 
struct brcmnand_soc {
   bool (*ctlrdy_ack)(struct brcmnand_soc *soc);
   void (*ctlrdy_set_enabled)(struct brcmnand_soc *soc, bool en);
   void (*prepare_data_bus)(struct brcmnand_soc *soc, bool prepare,
                bool is_param);
};
 
static inline void brcmnand_soc_data_bus_prepare(struct brcmnand_soc *soc,
                        bool is_param)
{
   if (soc && soc->prepare_data_bus)
       soc->prepare_data_bus(soc, true, is_param);
}
 
static inline void brcmnand_soc_data_bus_unprepare(struct brcmnand_soc *soc,
                          bool is_param)
{
   if (soc && soc->prepare_data_bus)
       soc->prepare_data_bus(soc, false, is_param);
}
 
static inline u32 brcmnand_readl(void __iomem *addr)
{
   /*
    * MIPS endianness is configured by boot strap, which also reverses all
    * bus endianness (i.e., big-endian CPU + big endian bus ==> native
    * endian I/O).
    *
    * Other architectures (e.g., ARM) either do not support big endian, or
    * else leave I/O in little endian mode.
    */
   if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
       return __raw_readl(addr);
   else
       return readl_relaxed(addr);
}
 
static inline void brcmnand_writel(u32 val, void __iomem *addr)
{
   /* See brcmnand_readl() comments */
   if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
       __raw_writel(val, addr);
   else
       writel_relaxed(val, addr);
}
 
int brcmnand_probe(struct platform_device *pdev, struct brcmnand_soc *soc);
int brcmnand_remove(struct platform_device *pdev);
 
extern const struct dev_pm_ops brcmnand_pm_ops;
 
#endif /* __BRCMNAND_H__ */