powerpc: Add PPC_EMULATED_STATS to powernv_defconfig
[linux-2.6/btrfs-unstable.git] / drivers / spi / spi-bcm-qspi.h
blob7abfc75a3860c677ed9806aa84bbb54079026130
1 /*
2 * Copyright 2016 Broadcom
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 (the "GPL").
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License version 2 (GPLv2) for more details.
13 * You should have received a copy of the GNU General Public License
14 * version 2 (GPLv2) along with this source code.
17 #ifndef __SPI_BCM_QSPI_H__
18 #define __SPI_BCM_QSPI_H__
20 #include <linux/types.h>
21 #include <linux/io.h>
23 /* BSPI interrupt masks */
24 #define INTR_BSPI_LR_OVERREAD_MASK BIT(4)
25 #define INTR_BSPI_LR_SESSION_DONE_MASK BIT(3)
26 #define INTR_BSPI_LR_IMPATIENT_MASK BIT(2)
27 #define INTR_BSPI_LR_SESSION_ABORTED_MASK BIT(1)
28 #define INTR_BSPI_LR_FULLNESS_REACHED_MASK BIT(0)
30 #define BSPI_LR_INTERRUPTS_DATA \
31 (INTR_BSPI_LR_SESSION_DONE_MASK | \
32 INTR_BSPI_LR_FULLNESS_REACHED_MASK)
34 #define BSPI_LR_INTERRUPTS_ERROR \
35 (INTR_BSPI_LR_OVERREAD_MASK | \
36 INTR_BSPI_LR_IMPATIENT_MASK | \
37 INTR_BSPI_LR_SESSION_ABORTED_MASK)
39 #define BSPI_LR_INTERRUPTS_ALL \
40 (BSPI_LR_INTERRUPTS_ERROR | \
41 BSPI_LR_INTERRUPTS_DATA)
43 /* MSPI Interrupt masks */
44 #define INTR_MSPI_HALTED_MASK BIT(6)
45 #define INTR_MSPI_DONE_MASK BIT(5)
47 #define MSPI_INTERRUPTS_ALL \
48 (INTR_MSPI_DONE_MASK | \
49 INTR_MSPI_HALTED_MASK)
51 #define QSPI_INTERRUPTS_ALL \
52 (MSPI_INTERRUPTS_ALL | \
53 BSPI_LR_INTERRUPTS_ALL)
55 struct platform_device;
56 struct dev_pm_ops;
58 enum {
59 MSPI_DONE = 0x1,
60 BSPI_DONE = 0x2,
61 BSPI_ERR = 0x4,
62 MSPI_BSPI_DONE = 0x7
65 struct bcm_qspi_soc_intc {
66 void (*bcm_qspi_int_ack)(struct bcm_qspi_soc_intc *soc_intc, int type);
67 void (*bcm_qspi_int_set)(struct bcm_qspi_soc_intc *soc_intc, int type,
68 bool en);
69 u32 (*bcm_qspi_get_int_status)(struct bcm_qspi_soc_intc *soc_intc);
72 /* Read controller register*/
73 static inline u32 bcm_qspi_readl(bool be, void __iomem *addr)
75 if (be)
76 return ioread32be(addr);
77 else
78 return readl_relaxed(addr);
81 /* Write controller register*/
82 static inline void bcm_qspi_writel(bool be,
83 unsigned int data, void __iomem *addr)
85 if (be)
86 iowrite32be(data, addr);
87 else
88 writel_relaxed(data, addr);
91 static inline u32 get_qspi_mask(int type)
93 switch (type) {
94 case MSPI_DONE:
95 return INTR_MSPI_DONE_MASK;
96 case BSPI_DONE:
97 return BSPI_LR_INTERRUPTS_ALL;
98 case MSPI_BSPI_DONE:
99 return QSPI_INTERRUPTS_ALL;
100 case BSPI_ERR:
101 return BSPI_LR_INTERRUPTS_ERROR;
104 return 0;
107 /* The common driver functions to be called by the SoC platform driver */
108 int bcm_qspi_probe(struct platform_device *pdev,
109 struct bcm_qspi_soc_intc *soc_intc);
110 int bcm_qspi_remove(struct platform_device *pdev);
112 /* pm_ops used by the SoC platform driver called on PM suspend/resume */
113 extern const struct dev_pm_ops bcm_qspi_pm_ops;
115 #endif /* __SPI_BCM_QSPI_H__ */