123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- /*
- * Copyright (c) 2006-2024 RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2024-08-16 zhujiale first version
- */
- #ifndef __RT_SDHCI_MMC_H__
- #define __RT_SDHCI_MMC_H__
- #include <drivers/dev_mmcsd_core.h>
- #include <rtthread.h>
- #include <drivers/mmcsd_cmd.h>
- #include <drivers/dev_mmcsd_core.h>
- #include <drivers/mmcsd_host.h>
- #define mmc_dev(x) ((x)->parent)
- #define MMC_SEND_TUNING_BLOCK_HS200 SEND_TUNING_BLOCK_HS200
- #define MMC_SEND_TUNING_BLOCK SEND_TUNING_BLOCK
- #define MMC_STOP_TRANSMISSION STOP_TRANSMISSION
- #define MMC_BUS_TEST_R 14 /* adtc R1 */
- #define MMC_WRITE_MULTIPLE_BLOCK WRITE_MULTIPLE_BLOCK
- #define MMC_READ_MULTIPLE_BLOCK READ_MULTIPLE_BLOCK
- #define MMC_TIMING_UHS_DDR50 MMCSD_TIMING_UHS_DDR50
- #define MMC_TIMING_UHS_SDR50 MMCSD_TIMING_UHS_SDR50
- #define MMC_TIMING_MMC_HS200 MMCSD_TIMING_MMC_HS200
- #define MMC_TIMING_MMC_HS400 MMCSD_TIMING_MMC_HS400
- #define MMC_TIMING_UHS_SDR104 MMCSD_TIMING_UHS_SDR104
- #define MMC_TIMING_UHS_SDR25 MMCSD_TIMING_UHS_SDR25
- #define MMC_TIMING_MMC_DDR52 MMCSD_TIMING_MMC_DDR52
- #define MMC_TIMING_UHS_SDR12 MMCSD_TIMING_UHS_SDR12
- #define MMC_TIMING_SD_HS MMCSD_TIMING_SD_HS
- #define MMC_TIMING_MMC_HS MMCSD_TIMING_MMC_HS
- #define MMC_POWER_OFF MMCSD_POWER_OFF
- #define MMC_POWER_UP MMCSD_POWER_UP
- #define MMC_POWER_ON MMCSD_POWER_ON
- #define MMC_POWER_UNDEFINED 3
- #define MMC_SET_DRIVER_TYPE_B 0
- #define MMC_SET_DRIVER_TYPE_A 1
- #define MMC_SET_DRIVER_TYPE_C 2
- #define MMC_SET_DRIVER_TYPE_D 3
- #define MMC_SIGNAL_VOLTAGE_330 0
- #define MMC_SIGNAL_VOLTAGE_180 1
- #define MMC_SIGNAL_VOLTAGE_120 2
- #define MMC_RSP_PRESENT (1 << 16)
- #define MMC_RSP_136 (1 << 17) /* 136 bit response */
- #define MMC_RSP_CRC (1 << 18) /* expect valid crc */
- #define MMC_RSP_BUSY (1 << 19) /* card may send busy */
- #define MMC_RSP_OPCODE (1 << 20) /* response contains opcode */
- #define MMC_RSP_NONE (0)
- #define MMC_RSP_R1 (MMC_RSP_PRESENT | MMC_RSP_CRC | MMC_RSP_OPCODE)
- #define MMC_RSP_R1B (MMC_RSP_PRESENT | MMC_RSP_CRC | MMC_RSP_OPCODE | MMC_RSP_BUSY)
- #define MMC_RSP_R2 (MMC_RSP_PRESENT | MMC_RSP_136 | MMC_RSP_CRC)
- #define MMC_RSP_R3 (MMC_RSP_PRESENT)
- #define MMC_RSP_R4 (MMC_RSP_PRESENT)
- #define MMC_RSP_R5 (MMC_RSP_PRESENT | MMC_RSP_CRC | MMC_RSP_OPCODE)
- #define MMC_RSP_R6 (MMC_RSP_PRESENT | MMC_RSP_CRC | MMC_RSP_OPCODE)
- #define MMC_RSP_R7 (MMC_RSP_PRESENT | MMC_RSP_CRC | MMC_RSP_OPCODE)
- #define MMC_CMD_ADTC CMD_ADTC
- #define MMC_BUS_WIDTH_8 MMCSD_BUS_WIDTH_8
- #define MMC_BUS_WIDTH_4 MMCSD_BUS_WIDTH_4
- #define MMC_BUS_WIDTH_1 MMCSD_BUS_WIDTH_1
- #define MMC_PM_KEEP_POWER (1 << 0) /* preserve card power during suspend */
- #define MMC_PM_WAKE_SDIO_IRQ (1 << 1) /* wake up host system on SDIO IRQ assertion */
- enum mmc_blk_status
- {
- MMC_BLK_SUCCESS = 0,
- MMC_BLK_PARTIAL,
- MMC_BLK_CMD_ERR,
- MMC_BLK_RETRY,
- MMC_BLK_ABORT,
- MMC_BLK_DATA_ERR,
- MMC_BLK_ECC_ERR,
- MMC_BLK_NOMEDIUM,
- MMC_BLK_NEW_REQUEST,
- };
- #define MMC_NUM_CLK_PHASES (MMC_TIMING_MMC_HS400 + 1)
- struct rt_mmc_host ;
- struct mmc_host_ops
- {
- void (*request)(struct rt_mmc_host *host, struct rt_mmcsd_req *req);
- void (*set_ios)(struct rt_mmc_host *host, struct rt_mmcsd_io_cfg *ios);
- int (*get_ro)(struct rt_mmc_host *host);
- int (*get_cd)(struct rt_mmc_host *host);
- void (*enable_sdio_irq)(struct rt_mmc_host *host, int enable);
- void (*ack_sdio_irq)(struct rt_mmc_host *host);
- int (*start_signal_voltage_switch)(struct rt_mmc_host *host, struct rt_mmcsd_io_cfg *ios);
- int (*card_busy)(struct rt_mmc_host *host);
- int (*execute_tuning)(struct rt_mmc_host *host, unsigned opcode);
- int (*prepare_hs400_tuning)(struct rt_mmc_host *host, struct rt_mmcsd_io_cfg *ios);
- int (*hs400_prepare_ddr)(struct rt_mmc_host *host);
- void (*hs400_downgrade)(struct rt_mmc_host *host);
- void (*hs400_complete)(struct rt_mmc_host *host);
- void (*hs400_enhanced_strobe)(struct rt_mmc_host *host,
- struct rt_mmcsd_io_cfg* ios);
- void (*hw_reset)(struct rt_mmc_host* host);
- void (*card_event)(struct rt_mmc_host* host);
- };
- struct regulator;
- struct mmc_pwrseq;
- struct mmc_supply
- {
- struct regulator *vmmc; /* Card power supply */
- struct regulator *vqmmc; /* Optional Vccq supply */
- };
- struct mmc_ctx
- {
- struct task_struct *task;
- };
- /* VDD voltage 3.3 ~ 3.4 */
- #define MMC_VDD_34_35 0x00400000 /* VDD voltage 3.4 ~ 3.5 */
- #define MMC_VDD_35_36 0x00800000 /* VDD voltage 3.5 ~ 3.6 */
- #define MMC_CAP2_HS200_1_8V_SDR MMCSD_SUP_HS200_1V8
- #define MMC_CAP_4_BIT_DATA MMCSD_BUSWIDTH_4
- #define MMC_CAP_8_BIT_DATA MMCSD_BUSWIDTH_8
- #define MMC_CAP2_HS200 MMCSD_SUP_HS200
- #define MMC_CAP_MMC_HIGHSPEED MMCSD_SUP_HIGHSPEED
- #define MMC_CAP_SD_HIGHSPEED MMCSD_SUP_HIGHSPEED
- #define MMC_CAP_1_8V_DDR MMCSD_SUP_DDR_1V8
- #define MMC_CAP_3_3V_DDR MMCSD_SUP_DDR_3V3
- #define MMC_CAP_1_2V_DDR MMCSD_SUP_DDR_1V2
- #define MMC_CAP_NONREMOVABLE MMCSD_SUP_NONREMOVABLE
- #define MMC_CAP_UHS_DDR50 0
- #define MMC_CAP2_HS400 0
- #define MMC_CAP_UHS_SDR50 0
- #define MMC_CAP_UHS_SDR25 0
- #define MMC_CAP_UHS_SDR12 0
- #define MMC_CAP_UHS_SDR104 0
- #define MMC_CAP_UHS 0
- #define MMC_CAP2_HSX00_1_8V 0
- #define MMC_CAP2_HS400_ES 0
- #define MMC_CAP_NEEDS_POLL 0
- #define MMC_CAP2_HSX00_1_2V 0
- #define MMC_CAP2_HS400_1_8V 0
- #define MMC_CAP_DRIVER_TYPE_D 0
- #define MMC_CAP_DRIVER_TYPE_C 0
- #define MMC_SET_DRIVER_TYPE_B 0
- #define MMC_CAP_DRIVER_TYPE_A 0
- #define MMC_CAP2_SDIO_IRQ_NOTHREAD 0
- #define MMC_CAP_CMD23 0
- #define MMC_CAP_SDIO_IRQ 0
- #define MMC_CAP2_NO_SDIO (1 << 19)
- #define MMC_CAP2_NO_SD (1 << 21)
- #define MMC_CAP2_NO_MMC (1 << 22)
- #define MMC_CAP2_CQE (1 << 23)
- #define MMC_VDD_165_195 VDD_165_195
- #define MMC_VDD_20_21 VDD_20_21
- #define MMC_VDD_29_30 VDD_29_30
- #define MMC_VDD_30_31 VDD_30_31
- #define MMC_VDD_32_33 VDD_32_33
- #define MMC_VDD_33_34 VDD_33_34
- struct rt_mmc_host
- {
- struct rt_mmcsd_host rthost;
- struct rt_device *parent;
- int index;
- const struct mmc_host_ops *ops;
- unsigned int f_min;
- unsigned int f_max;
- unsigned int f_init;
- rt_uint32_t ocr_avail;
- rt_uint32_t ocr_avail_sdio; /* SDIO-specific OCR */
- rt_uint32_t ocr_avail_sd; /* SD-specific OCR */
- rt_uint32_t ocr_avail_mmc; /* MMC-specific OCR */
- struct wakeup_source *ws; /* Enable consume of uevents */
- rt_uint32_t max_current_330;
- rt_uint32_t max_current_300;
- rt_uint32_t max_current_180;
- rt_uint32_t caps; /* Host capabilities */
- rt_uint32_t caps2; /* More host capabilities */
- /* host specific block data */
- unsigned int max_seg_size; /* see blk_queue_max_segment_size */
- unsigned short max_segs; /* see blk_queue_max_segments */
- unsigned short unused;
- unsigned int max_req_size; /* maximum number of bytes in one req */
- unsigned int max_blk_size; /* maximum size of one mmc block */
- unsigned int max_blk_count; /* maximum number of blocks in one req */
- unsigned int max_busy_timeout; /* max busy timeout in ms */
- struct rt_mmcsd_io_cfg ios; /* current io bus settings */
- unsigned int retune_period;
- /* group bitfields together to minimize padding */
- unsigned int use_spi_crc : 1;
- unsigned int claimed : 1; /* host exclusively claimed */
- unsigned int doing_init_tune : 1; /* initial tuning in progress */
- unsigned int can_retune : 1; /* re-tuning can be used */
- unsigned int doing_retune : 1; /* re-tuning in progress */
- unsigned int retune_now : 1; /* do re-tuning at next req */
- unsigned int retune_paused : 1; /* re-tuning is temporarily disabled */
- unsigned int retune_crc_disable : 1; /* don't trigger retune upon crc */
- unsigned int can_dma_map_merge : 1; /* merging can be used */
- unsigned int vqmmc_enabled : 1; /* vqmmc regulator is enabled */
- int need_retune; /* re-tuning is needed */
- int hold_retune; /* hold off re-tuning */
- rt_bool_t trigger_card_event; /* card_event necessary */
- unsigned int sdio_irqs;
- rt_bool_t sdio_irq_pending;
- struct led_trigger *led; /* activity led */
- struct mmc_supply supply;
- /* Ongoing data transfer that allows commands during transfer */
- struct rt_mmcsd_req *ongoing_mrq;
- unsigned int actual_clock; /* Actual HC clock rate */
- rt_uint32_t pm_caps;
- unsigned long private[];
- };
- static inline int mmc_card_is_removable(struct rt_mmc_host *host)
- {
- return !(host->caps & MMC_CAP_NONREMOVABLE);
- }
- struct device_node;
- struct rt_mmc_host *rt_mmc_alloc_host(int extra, struct rt_device *);
- int rt_mmc_add_host(struct rt_mmc_host *);
- void rt_mmc_remove_host(struct rt_mmc_host *);
- void rt_mmc_free_host(struct rt_mmc_host *);
- int rt_mmc_of_parse(struct rt_mmc_host *host);
- int rt_mmc_of_parse_voltage(struct rt_mmc_host *host, rt_uint32_t *mask);
- static inline void *mmc_priv(struct rt_mmc_host *host)
- {
- return (void *)host->private;
- }
- #define mmc_host_is_spi(host) ((host)->caps & MMC_CAP_SPI)
- #define mmc_dev(x) ((x)->parent)
- #define mmc_classdev(x) (&(x)->class_dev)
- #define mmc_hostname(x) (x->parent->parent.name)
- void rt_mmc_detect_change(struct rt_mmc_host *, unsigned long delay);
- void rt_mmc_request_done(struct rt_mmc_host *, struct rt_mmcsd_req *);
- void mmc_command_done(struct rt_mmc_host *host, struct rt_mmcsd_req *mrq);
- void mmc_cqe_request_done(struct rt_mmc_host *host, struct rt_mmcsd_req *mrq);
- static inline rt_bool_t sdio_irq_claimed(struct rt_mmc_host *host)
- {
- return host->sdio_irqs > 0;
- }
- static inline int mmc_regulator_set_ocr(struct rt_mmc_host *mmc,
- struct regulator *supply,
- unsigned short vdd_bit)
- {
- return 0;
- }
- int mmc_regulator_get_supply(struct rt_mmc_host *mmc);
- int mmc_regulator_enable_vqmmc(struct rt_mmc_host *mmc);
- void mmc_regulator_disable_vqmmc(struct rt_mmc_host *mmc);
- void mmc_retune_timer_stop(struct rt_mmc_host* host);
- enum dma_data_direction
- {
- DMA_BIDIRECTIONAL = 0,
- DMA_TO_DEVICE = 1,
- DMA_FROM_DEVICE = 2,
- DMA_NONE = 3,
- };
- #define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL << (n)) - 1))
- static inline void mmc_retune_needed(struct rt_mmc_host *host)
- {
- if (host->can_retune)
- host->need_retune = 1;
- }
- static inline rt_bool_t mmc_can_retune(struct rt_mmc_host *host)
- {
- return host->can_retune == 1;
- }
- static inline rt_bool_t mmc_doing_retune(struct rt_mmc_host *host)
- {
- return host->doing_retune == 1;
- }
- static inline rt_bool_t mmc_doing_tune(struct rt_mmc_host *host)
- {
- return host->doing_retune == 1 || host->doing_init_tune == 1;
- }
- static inline int mmc_get_dma_dir(struct rt_mmcsd_data *data)
- {
- return data->flags & DATA_DIR_WRITE ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
- }
- static inline rt_bool_t mmc_op_multi(rt_uint32_t opcode)
- {
- return opcode == MMC_WRITE_MULTIPLE_BLOCK || opcode == MMC_READ_MULTIPLE_BLOCK;
- }
- static inline rt_bool_t mmc_op_tuning(rt_uint32_t opcode)
- {
- return opcode == MMC_SEND_TUNING_BLOCK || opcode == MMC_SEND_TUNING_BLOCK_HS200;
- }
- int rt_mmc_gpio_get_cd(struct rt_mmc_host *host);
- void rt_mmc_detect_change(struct rt_mmc_host *host, unsigned long delay);
- int rt_mmc_regulator_set_vqmmc(struct rt_mmc_host *mmc, struct rt_mmcsd_io_cfg *ios);
- rt_bool_t rt_mmc_can_gpio_ro(struct rt_mmc_host *host);
- int rt_mmc_gpio_get_ro(struct rt_mmc_host *host);
- int rt_mmc_send_abort_tuning(struct rt_mmc_host *host, rt_uint32_t opcode);
- int rt_mmc_of_parse(struct rt_mmc_host *host);
- #endif
|