19ad9a52cSNicolas Pitre /* SPDX-License-Identifier: BSD-3-Clause */
29ad9a52cSNicolas Pitre /*
39ad9a52cSNicolas Pitre * Copyright (c) 2020, MIPI Alliance, Inc.
49ad9a52cSNicolas Pitre *
59ad9a52cSNicolas Pitre * Author: Nicolas Pitre <npitre@baylibre.com>
69ad9a52cSNicolas Pitre *
79ad9a52cSNicolas Pitre * Common HCI stuff
89ad9a52cSNicolas Pitre */
99ad9a52cSNicolas Pitre
109ad9a52cSNicolas Pitre #ifndef HCI_H
119ad9a52cSNicolas Pitre #define HCI_H
129ad9a52cSNicolas Pitre
13216201b3SShyam Sundar S K #include <linux/io.h>
149ad9a52cSNicolas Pitre
159ad9a52cSNicolas Pitre /* Handy logging macro to save on line length */
169ad9a52cSNicolas Pitre #define DBG(x, ...) pr_devel("%s: " x "\n", __func__, ##__VA_ARGS__)
179ad9a52cSNicolas Pitre
189ad9a52cSNicolas Pitre /* 32-bit word aware bit and mask macros */
199ad9a52cSNicolas Pitre #define W0_MASK(h, l) GENMASK((h) - 0, (l) - 0)
209ad9a52cSNicolas Pitre #define W1_MASK(h, l) GENMASK((h) - 32, (l) - 32)
219ad9a52cSNicolas Pitre #define W2_MASK(h, l) GENMASK((h) - 64, (l) - 64)
229ad9a52cSNicolas Pitre #define W3_MASK(h, l) GENMASK((h) - 96, (l) - 96)
239ad9a52cSNicolas Pitre
249ad9a52cSNicolas Pitre /* Same for single bit macros (trailing _ to align with W*_MASK width) */
259ad9a52cSNicolas Pitre #define W0_BIT_(x) BIT((x) - 0)
269ad9a52cSNicolas Pitre #define W1_BIT_(x) BIT((x) - 32)
279ad9a52cSNicolas Pitre #define W2_BIT_(x) BIT((x) - 64)
289ad9a52cSNicolas Pitre #define W3_BIT_(x) BIT((x) - 96)
299ad9a52cSNicolas Pitre
30216201b3SShyam Sundar S K #define reg_read(r) readl(hci->base_regs + (r))
31216201b3SShyam Sundar S K #define reg_write(r, v) writel(v, hci->base_regs + (r))
32216201b3SShyam Sundar S K #define reg_set(r, v) reg_write(r, reg_read(r) | (v))
33216201b3SShyam Sundar S K #define reg_clear(r, v) reg_write(r, reg_read(r) & ~(v))
349ad9a52cSNicolas Pitre
359ad9a52cSNicolas Pitre struct hci_cmd_ops;
369ad9a52cSNicolas Pitre
379ad9a52cSNicolas Pitre /* Our main structure */
389ad9a52cSNicolas Pitre struct i3c_hci {
399ad9a52cSNicolas Pitre struct i3c_master_controller master;
409ad9a52cSNicolas Pitre void __iomem *base_regs;
419ad9a52cSNicolas Pitre void __iomem *DAT_regs;
429ad9a52cSNicolas Pitre void __iomem *DCT_regs;
439ad9a52cSNicolas Pitre void __iomem *RHS_regs;
449ad9a52cSNicolas Pitre void __iomem *PIO_regs;
459ad9a52cSNicolas Pitre void __iomem *EXTCAPS_regs;
469ad9a52cSNicolas Pitre void __iomem *AUTOCMD_regs;
479ad9a52cSNicolas Pitre void __iomem *DEBUG_regs;
489ad9a52cSNicolas Pitre const struct hci_io_ops *io;
499ad9a52cSNicolas Pitre void *io_data;
509ad9a52cSNicolas Pitre const struct hci_cmd_ops *cmd;
519ad9a52cSNicolas Pitre atomic_t next_cmd_tid;
529ad9a52cSNicolas Pitre u32 caps;
539ad9a52cSNicolas Pitre unsigned int quirks;
549ad9a52cSNicolas Pitre unsigned int DAT_entries;
559ad9a52cSNicolas Pitre unsigned int DAT_entry_size;
569ad9a52cSNicolas Pitre void *DAT_data;
579ad9a52cSNicolas Pitre unsigned int DCT_entries;
589ad9a52cSNicolas Pitre unsigned int DCT_entry_size;
599ad9a52cSNicolas Pitre u8 version_major;
609ad9a52cSNicolas Pitre u8 version_minor;
619ad9a52cSNicolas Pitre u8 revision;
629ad9a52cSNicolas Pitre u32 vendor_mipi_id;
639ad9a52cSNicolas Pitre u32 vendor_version_id;
649ad9a52cSNicolas Pitre u32 vendor_product_id;
659ad9a52cSNicolas Pitre void *vendor_data;
669ad9a52cSNicolas Pitre };
679ad9a52cSNicolas Pitre
689ad9a52cSNicolas Pitre
699ad9a52cSNicolas Pitre /*
709ad9a52cSNicolas Pitre * Structure to represent a master initiated transfer.
719ad9a52cSNicolas Pitre * The rnw, data and data_len fields must be initialized before calling any
729ad9a52cSNicolas Pitre * hci->cmd->*() method. The cmd method will initialize cmd_desc[] and
739ad9a52cSNicolas Pitre * possibly modify (clear) the data field. Then xfer->cmd_desc[0] can
749ad9a52cSNicolas Pitre * be augmented with CMD_0_ROC and/or CMD_0_TOC.
759ad9a52cSNicolas Pitre * The completion field needs to be initialized before queueing with
769ad9a52cSNicolas Pitre * hci->io->queue_xfer(), and requires CMD_0_ROC to be set.
779ad9a52cSNicolas Pitre */
789ad9a52cSNicolas Pitre struct hci_xfer {
799ad9a52cSNicolas Pitre u32 cmd_desc[4];
809ad9a52cSNicolas Pitre u32 response;
819ad9a52cSNicolas Pitre bool rnw;
829ad9a52cSNicolas Pitre void *data;
839ad9a52cSNicolas Pitre unsigned int data_len;
849ad9a52cSNicolas Pitre unsigned int cmd_tid;
859ad9a52cSNicolas Pitre struct completion *completion;
869ad9a52cSNicolas Pitre union {
879ad9a52cSNicolas Pitre struct {
889ad9a52cSNicolas Pitre /* PIO specific */
899ad9a52cSNicolas Pitre struct hci_xfer *next_xfer;
909ad9a52cSNicolas Pitre struct hci_xfer *next_data;
919ad9a52cSNicolas Pitre struct hci_xfer *next_resp;
929ad9a52cSNicolas Pitre unsigned int data_left;
939ad9a52cSNicolas Pitre u32 data_word_before_partial;
949ad9a52cSNicolas Pitre };
959ad9a52cSNicolas Pitre struct {
969ad9a52cSNicolas Pitre /* DMA specific */
979ad9a52cSNicolas Pitre dma_addr_t data_dma;
984afd7287SJarkko Nikula void *bounce_buf;
999ad9a52cSNicolas Pitre int ring_number;
1009ad9a52cSNicolas Pitre int ring_entry;
1019ad9a52cSNicolas Pitre };
1029ad9a52cSNicolas Pitre };
1039ad9a52cSNicolas Pitre };
1049ad9a52cSNicolas Pitre
hci_alloc_xfer(unsigned int n)1059ad9a52cSNicolas Pitre static inline struct hci_xfer *hci_alloc_xfer(unsigned int n)
1069ad9a52cSNicolas Pitre {
107313ece22SLen Baker return kcalloc(n, sizeof(struct hci_xfer), GFP_KERNEL);
1089ad9a52cSNicolas Pitre }
1099ad9a52cSNicolas Pitre
hci_free_xfer(struct hci_xfer * xfer,unsigned int n)1109ad9a52cSNicolas Pitre static inline void hci_free_xfer(struct hci_xfer *xfer, unsigned int n)
1119ad9a52cSNicolas Pitre {
1129ad9a52cSNicolas Pitre kfree(xfer);
1139ad9a52cSNicolas Pitre }
1149ad9a52cSNicolas Pitre
1159ad9a52cSNicolas Pitre
1169ad9a52cSNicolas Pitre /* This abstracts PIO vs DMA operations */
1179ad9a52cSNicolas Pitre struct hci_io_ops {
1189ad9a52cSNicolas Pitre bool (*irq_handler)(struct i3c_hci *hci, unsigned int mask);
1199ad9a52cSNicolas Pitre int (*queue_xfer)(struct i3c_hci *hci, struct hci_xfer *xfer, int n);
1209ad9a52cSNicolas Pitre bool (*dequeue_xfer)(struct i3c_hci *hci, struct hci_xfer *xfer, int n);
1219ad9a52cSNicolas Pitre int (*request_ibi)(struct i3c_hci *hci, struct i3c_dev_desc *dev,
1229ad9a52cSNicolas Pitre const struct i3c_ibi_setup *req);
1239ad9a52cSNicolas Pitre void (*free_ibi)(struct i3c_hci *hci, struct i3c_dev_desc *dev);
1249ad9a52cSNicolas Pitre void (*recycle_ibi_slot)(struct i3c_hci *hci, struct i3c_dev_desc *dev,
1259ad9a52cSNicolas Pitre struct i3c_ibi_slot *slot);
1269ad9a52cSNicolas Pitre int (*init)(struct i3c_hci *hci);
1279ad9a52cSNicolas Pitre void (*cleanup)(struct i3c_hci *hci);
1289ad9a52cSNicolas Pitre };
1299ad9a52cSNicolas Pitre
1309ad9a52cSNicolas Pitre extern const struct hci_io_ops mipi_i3c_hci_pio;
1319ad9a52cSNicolas Pitre extern const struct hci_io_ops mipi_i3c_hci_dma;
1329ad9a52cSNicolas Pitre
1339ad9a52cSNicolas Pitre
1349ad9a52cSNicolas Pitre /* Our per device master private data */
1359ad9a52cSNicolas Pitre struct i3c_hci_dev_data {
1369ad9a52cSNicolas Pitre int dat_idx;
1379ad9a52cSNicolas Pitre void *ibi_data;
1389ad9a52cSNicolas Pitre };
1399ad9a52cSNicolas Pitre
1409ad9a52cSNicolas Pitre
1419ad9a52cSNicolas Pitre /* list of quirks */
1429ad9a52cSNicolas Pitre #define HCI_QUIRK_RAW_CCC BIT(1) /* CCC framing must be explicit */
14301408932SShyam Sundar S K #define HCI_QUIRK_PIO_MODE BIT(2) /* Set PIO mode for AMD platforms */
14446d4daa5SShyam Sundar S K #define HCI_QUIRK_OD_PP_TIMING BIT(3) /* Set OD and PP timings for AMD platforms */
145*ced86959SShyam Sundar S K #define HCI_QUIRK_RESP_BUF_THLD BIT(4) /* Set resp buf thld to 0 for AMD platforms */
1469ad9a52cSNicolas Pitre
1479ad9a52cSNicolas Pitre
1489ad9a52cSNicolas Pitre /* global functions */
1499ad9a52cSNicolas Pitre void mipi_i3c_hci_resume(struct i3c_hci *hci);
1509ad9a52cSNicolas Pitre void mipi_i3c_hci_pio_reset(struct i3c_hci *hci);
1519ad9a52cSNicolas Pitre void mipi_i3c_hci_dct_index_reset(struct i3c_hci *hci);
15246d4daa5SShyam Sundar S K void amd_set_od_pp_timing(struct i3c_hci *hci);
153*ced86959SShyam Sundar S K void amd_set_resp_buf_thld(struct i3c_hci *hci);
1549ad9a52cSNicolas Pitre
1559ad9a52cSNicolas Pitre #endif
156