Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2008,2010 Freescale Semiconductor, Inc |
Yangbo Lu | 39913ac | 2020-06-17 18:08:58 +0800 | [diff] [blame] | 4 | * Copyright 2020 NXP |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 5 | * Andy Fleming |
| 6 | * |
| 7 | * Based (loosely) on the Linux code |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef _MMC_PRIVATE_H_ |
| 11 | #define _MMC_PRIVATE_H_ |
| 12 | |
| 13 | #include <mmc.h> |
| 14 | |
Jean-Jacques Hiblot | 863d100 | 2019-07-02 10:53:52 +0200 | [diff] [blame] | 15 | int mmc_send_status(struct mmc *mmc, unsigned int *status); |
| 16 | int mmc_poll_for_busy(struct mmc *mmc, int timeout); |
| 17 | |
| 18 | int mmc_set_blocklen(struct mmc *mmc, int len); |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 19 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 20 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 7dba0b9 | 2016-06-12 23:30:15 -0600 | [diff] [blame] | 21 | ulong mmc_bread(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, |
| 22 | void *dst); |
| 23 | #else |
| 24 | ulong mmc_bread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt, |
| 25 | void *dst); |
| 26 | #endif |
| 27 | |
Jean-Jacques Hiblot | d6400c3 | 2018-01-04 15:23:32 +0100 | [diff] [blame] | 28 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 29 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 30 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 31 | ulong mmc_bwrite(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, |
| 32 | const void *src); |
Simon Glass | 561e624 | 2016-10-01 14:43:17 -0600 | [diff] [blame] | 33 | ulong mmc_berase(struct udevice *dev, lbaint_t start, lbaint_t blkcnt); |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 34 | #else |
| 35 | ulong mmc_bwrite(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt, |
| 36 | const void *src); |
Simon Glass | 561e624 | 2016-10-01 14:43:17 -0600 | [diff] [blame] | 37 | ulong mmc_berase(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt); |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 38 | #endif |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 39 | |
Jean-Jacques Hiblot | d6400c3 | 2018-01-04 15:23:32 +0100 | [diff] [blame] | 40 | #else /* CONFIG_SPL_MMC_WRITE is not defined */ |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 41 | |
B, Ravi | d2d9bdf | 2016-09-28 14:46:18 +0530 | [diff] [blame] | 42 | /* declare dummies to reduce code size. */ |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 43 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 44 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | e419a3e | 2016-05-14 14:03:09 -0600 | [diff] [blame] | 45 | static inline unsigned long mmc_berase(struct udevice *dev, |
| 46 | lbaint_t start, lbaint_t blkcnt) |
| 47 | { |
| 48 | return 0; |
| 49 | } |
| 50 | |
| 51 | static inline ulong mmc_bwrite(struct udevice *dev, lbaint_t start, |
| 52 | lbaint_t blkcnt, const void *src) |
| 53 | { |
| 54 | return 0; |
| 55 | } |
| 56 | #else |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 57 | static inline unsigned long mmc_berase(struct blk_desc *block_dev, |
Stephen Warren | 7c4213f | 2015-12-07 11:38:48 -0700 | [diff] [blame] | 58 | lbaint_t start, lbaint_t blkcnt) |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 59 | { |
| 60 | return 0; |
| 61 | } |
| 62 | |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 63 | static inline ulong mmc_bwrite(struct blk_desc *block_dev, lbaint_t start, |
Stephen Warren | 7c4213f | 2015-12-07 11:38:48 -0700 | [diff] [blame] | 64 | lbaint_t blkcnt, const void *src) |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 65 | { |
| 66 | return 0; |
| 67 | } |
Simon Glass | e419a3e | 2016-05-14 14:03:09 -0600 | [diff] [blame] | 68 | #endif |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 69 | |
| 70 | #endif /* CONFIG_SPL_BUILD */ |
| 71 | |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 72 | #ifdef CONFIG_MMC_TRACE |
| 73 | void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd); |
| 74 | void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, int ret); |
| 75 | void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd); |
| 76 | #else |
| 77 | static inline void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd) |
| 78 | { |
| 79 | } |
| 80 | |
| 81 | static inline void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, |
| 82 | int ret) |
| 83 | { |
| 84 | } |
| 85 | |
| 86 | static inline void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd) |
| 87 | { |
| 88 | } |
| 89 | #endif |
| 90 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 91 | /** |
| 92 | * mmc_get_next_devnum() - Get the next available MMC device number |
| 93 | * |
| 94 | * @return next available device number (0 = first), or -ve on error |
| 95 | */ |
| 96 | int mmc_get_next_devnum(void); |
| 97 | |
| 98 | /** |
| 99 | * mmc_do_preinit() - Get an MMC device ready for use |
| 100 | */ |
| 101 | void mmc_do_preinit(void); |
| 102 | |
| 103 | /** |
| 104 | * mmc_list_init() - Set up the list of MMC devices |
| 105 | */ |
| 106 | void mmc_list_init(void); |
| 107 | |
| 108 | /** |
| 109 | * mmc_list_add() - Add a new MMC device to the list of devices |
| 110 | * |
| 111 | * @mmc: Device to add |
| 112 | */ |
| 113 | void mmc_list_add(struct mmc *mmc); |
| 114 | |
Simon Glass | 7dba0b9 | 2016-06-12 23:30:15 -0600 | [diff] [blame] | 115 | /** |
| 116 | * mmc_switch_part() - Switch to a new MMC hardware partition |
| 117 | * |
| 118 | * @mmc: MMC device |
| 119 | * @part_num: Hardware partition number |
| 120 | * @return 0 if OK, -ve on error |
| 121 | */ |
| 122 | int mmc_switch_part(struct mmc *mmc, unsigned int part_num); |
| 123 | |
Simon Glass | c40704f | 2016-06-12 23:30:18 -0600 | [diff] [blame] | 124 | /** |
| 125 | * mmc_switch() - Issue and MMC switch mode command |
| 126 | * |
| 127 | * @mmc: MMC device |
| 128 | * @set: Unused |
| 129 | * @index: Cmdarg index |
| 130 | * @value: Cmdarg value |
| 131 | * @return 0 if OK, -ve on error |
| 132 | */ |
| 133 | int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value); |
| 134 | |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 135 | #endif /* _MMC_PRIVATE_H_ */ |