blob: e9dfdd501cd1541dde317b60e3bf7d4fa9eb127d [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Pierre Ossmane29a7d72007-05-26 13:48:18 +02002/*
3 * include/linux/mmc/sdio_func.h
4 *
Pierre Ossmanad3868b2008-06-28 12:52:45 +02005 * Copyright 2007-2008 Pierre Ossman
Pierre Ossmane29a7d72007-05-26 13:48:18 +02006 */
7
Robert P. J. Day100e9182011-05-27 16:04:03 -04008#ifndef LINUX_MMC_SDIO_FUNC_H
9#define LINUX_MMC_SDIO_FUNC_H
Pierre Ossmane29a7d72007-05-26 13:48:18 +020010
Pierre Ossman3b38bea2007-06-16 15:54:55 +020011#include <linux/device.h>
12#include <linux/mod_devicetable.h>
13
Nicolas Pitreda68c4e2010-03-05 13:43:31 -080014#include <linux/mmc/pm.h>
15
Pierre Ossmane29a7d72007-05-26 13:48:18 +020016struct mmc_card;
Nicolas Pitred1496c32007-06-30 16:29:41 +020017struct sdio_func;
18
19typedef void (sdio_irq_handler_t)(struct sdio_func *);
Pierre Ossmane29a7d72007-05-26 13:48:18 +020020
21/*
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040022 * SDIO function CIS tuple (unknown to the core)
23 */
24struct sdio_func_tuple {
25 struct sdio_func_tuple *next;
26 unsigned char code;
27 unsigned char size;
28 unsigned char data[0];
29};
30
31/*
Pierre Ossmane29a7d72007-05-26 13:48:18 +020032 * SDIO function devices
33 */
34struct sdio_func {
35 struct mmc_card *card; /* the card this device belongs to */
36 struct device dev; /* the device */
Nicolas Pitred1496c32007-06-30 16:29:41 +020037 sdio_irq_handler_t *irq_handler; /* IRQ callback */
Pierre Ossmane29a7d72007-05-26 13:48:18 +020038 unsigned int num; /* function number */
Pierre Ossman05970072007-06-11 21:01:00 +020039
40 unsigned char class; /* standard interface class */
41 unsigned short vendor; /* vendor id */
42 unsigned short device; /* device id */
43
David Vrabel9a08f822007-08-08 14:23:48 +010044 unsigned max_blksize; /* maximum block size */
45 unsigned cur_blksize; /* current block size */
Pierre Ossman1a632f82007-07-30 15:15:30 +020046
Benzi Zbit62a75732008-07-10 02:41:43 +030047 unsigned enable_timeout; /* max enable timeout in msec */
48
Pierre Ossmane29a7d72007-05-26 13:48:18 +020049 unsigned int state; /* function state */
50#define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040051
Heiner Kallweit5ef1ecf2017-03-29 20:54:37 +020052 u8 *tmpbuf; /* DMA:able scratch buffer */
Pierre Ossman112c9db2007-07-06 13:35:01 +020053
Pierre Ossman759bdc72007-09-19 18:42:16 +020054 unsigned num_info; /* number of info strings */
55 const char **info; /* info strings */
56
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040057 struct sdio_func_tuple *tuples;
Pierre Ossmane29a7d72007-05-26 13:48:18 +020058};
59
60#define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT)
61
62#define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT)
63
Kay Sieversd1b26862008-11-08 21:37:46 +010064#define sdio_func_id(f) (dev_name(&(f)->dev))
Pierre Ossmane29a7d72007-05-26 13:48:18 +020065
Pierre Ossmanf76c8512007-05-27 12:00:02 +020066#define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
67#define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d)
Nicolas Pitre996ad5682009-09-22 16:45:30 -070068#define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev)
Pierre Ossmanf76c8512007-05-27 12:00:02 +020069
70/*
71 * SDIO function device driver
72 */
73struct sdio_driver {
74 char *name;
Pierre Ossman3b38bea2007-06-16 15:54:55 +020075 const struct sdio_device_id *id_table;
Pierre Ossmanf76c8512007-05-27 12:00:02 +020076
Pierre Ossman3b38bea2007-06-16 15:54:55 +020077 int (*probe)(struct sdio_func *, const struct sdio_device_id *);
Pierre Ossmanf76c8512007-05-27 12:00:02 +020078 void (*remove)(struct sdio_func *);
79
80 struct device_driver drv;
81};
82
Pierre Ossman3b38bea2007-06-16 15:54:55 +020083/**
84 * SDIO_DEVICE - macro used to describe a specific SDIO device
85 * @vend: the 16 bit manufacturer code
86 * @dev: the 16 bit function id
87 *
88 * This macro is used to create a struct sdio_device_id that matches a
89 * specific device. The class field will be set to SDIO_ANY_ID.
90 */
91#define SDIO_DEVICE(vend,dev) \
92 .class = SDIO_ANY_ID, \
93 .vendor = (vend), .device = (dev)
94
95/**
96 * SDIO_DEVICE_CLASS - macro used to describe a specific SDIO device class
97 * @dev_class: the 8 bit standard interface code
98 *
99 * This macro is used to create a struct sdio_device_id that matches a
100 * specific standard SDIO function type. The vendor and device fields will
101 * be set to SDIO_ANY_ID.
102 */
103#define SDIO_DEVICE_CLASS(dev_class) \
104 .class = (dev_class), \
105 .vendor = SDIO_ANY_ID, .device = SDIO_ANY_ID
106
Pierre Ossmanf76c8512007-05-27 12:00:02 +0200107extern int sdio_register_driver(struct sdio_driver *);
108extern void sdio_unregister_driver(struct sdio_driver *);
109
Sean Wangdb0a3902019-03-14 05:01:58 +0800110/**
111 * module_sdio_driver() - Helper macro for registering a SDIO driver
112 * @__sdio_driver: sdio_driver struct
113 *
114 * Helper macro for SDIO drivers which do not do anything special in module
115 * init/exit. This eliminates a lot of boilerplate. Each module may only
116 * use this macro once, and calling it replaces module_init() and module_exit()
117 */
118#define module_sdio_driver(__sdio_driver) \
119 module_driver(__sdio_driver, sdio_register_driver, \
120 sdio_unregister_driver)
121
Pierre Ossman46f555f2007-05-27 12:57:15 +0200122/*
123 * SDIO I/O operations
124 */
125extern void sdio_claim_host(struct sdio_func *func);
126extern void sdio_release_host(struct sdio_func *func);
127
Pierre Ossmanfa64efa2007-05-27 14:22:37 +0200128extern int sdio_enable_func(struct sdio_func *func);
129extern int sdio_disable_func(struct sdio_func *func);
130
David Vrabel9a08f822007-08-08 14:23:48 +0100131extern int sdio_set_block_size(struct sdio_func *func, unsigned blksz);
132
Nicolas Pitred1496c32007-06-30 16:29:41 +0200133extern int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler);
134extern int sdio_release_irq(struct sdio_func *func);
135
Pierre Ossmanad3868b2008-06-28 12:52:45 +0200136extern unsigned int sdio_align_size(struct sdio_func *func, unsigned int sz);
137
Tomas Winkler6d373332008-06-30 10:50:24 +0300138extern u8 sdio_readb(struct sdio_func *func, unsigned int addr, int *err_ret);
139extern u16 sdio_readw(struct sdio_func *func, unsigned int addr, int *err_ret);
140extern u32 sdio_readl(struct sdio_func *func, unsigned int addr, int *err_ret);
Pierre Ossman112c9db2007-07-06 13:35:01 +0200141
142extern int sdio_memcpy_fromio(struct sdio_func *func, void *dst,
143 unsigned int addr, int count);
144extern int sdio_readsb(struct sdio_func *func, void *dst,
145 unsigned int addr, int count);
Pierre Ossman46f555f2007-05-27 12:57:15 +0200146
Tomas Winkler6d373332008-06-30 10:50:24 +0300147extern void sdio_writeb(struct sdio_func *func, u8 b,
Pierre Ossman46f555f2007-05-27 12:57:15 +0200148 unsigned int addr, int *err_ret);
Tomas Winkler6d373332008-06-30 10:50:24 +0300149extern void sdio_writew(struct sdio_func *func, u16 b,
Pierre Ossman112c9db2007-07-06 13:35:01 +0200150 unsigned int addr, int *err_ret);
Tomas Winkler6d373332008-06-30 10:50:24 +0300151extern void sdio_writel(struct sdio_func *func, u32 b,
Pierre Ossman112c9db2007-07-06 13:35:01 +0200152 unsigned int addr, int *err_ret);
153
Grazvydas Ignotas6c1f7162010-05-26 14:42:09 -0700154extern u8 sdio_writeb_readb(struct sdio_func *func, u8 write_byte,
155 unsigned int addr, int *err_ret);
156
Pierre Ossman112c9db2007-07-06 13:35:01 +0200157extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr,
158 void *src, int count);
159extern int sdio_writesb(struct sdio_func *func, unsigned int addr,
160 void *src, int count);
Pierre Ossman46f555f2007-05-27 12:57:15 +0200161
David Vrabel7806cdb2007-08-10 13:29:46 +0100162extern unsigned char sdio_f0_readb(struct sdio_func *func,
163 unsigned int addr, int *err_ret);
164extern void sdio_f0_writeb(struct sdio_func *func, unsigned char b,
165 unsigned int addr, int *err_ret);
166
Nicolas Pitreda68c4e2010-03-05 13:43:31 -0800167extern mmc_pm_flag_t sdio_get_host_pm_caps(struct sdio_func *func);
168extern int sdio_set_host_pm_flags(struct sdio_func *func, mmc_pm_flag_t flags);
169
Robert P. J. Day100e9182011-05-27 16:04:03 -0400170#endif /* LINUX_MMC_SDIO_FUNC_H */