blob: 4164809a8e6337e4959c42a9cd240fc0bbfc77dc [file] [log] [blame]
Pierre Ossmane29a7d72007-05-26 13:48:18 +02001/*
2 * include/linux/mmc/sdio_func.h
3 *
4 * Copyright 2007 Pierre Ossman
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
10 */
11
12#ifndef MMC_SDIO_FUNC_H
13#define MMC_SDIO_FUNC_H
14
15struct mmc_card;
16
17/*
18 * SDIO function devices
19 */
20struct sdio_func {
21 struct mmc_card *card; /* the card this device belongs to */
22 struct device dev; /* the device */
23 unsigned int num; /* function number */
Pierre Ossman05970072007-06-11 21:01:00 +020024
25 unsigned char class; /* standard interface class */
26 unsigned short vendor; /* vendor id */
27 unsigned short device; /* device id */
28
Pierre Ossmane29a7d72007-05-26 13:48:18 +020029 unsigned int state; /* function state */
30#define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */
31};
32
33#define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT)
34
35#define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT)
36
37#define sdio_func_id(f) ((f)->dev.bus_id)
38
Pierre Ossmanf76c8512007-05-27 12:00:02 +020039#define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
40#define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d)
41
42/*
43 * SDIO function device driver
44 */
45struct sdio_driver {
46 char *name;
47
48 int (*probe)(struct sdio_func *);
49 void (*remove)(struct sdio_func *);
50
51 struct device_driver drv;
52};
53
54extern int sdio_register_driver(struct sdio_driver *);
55extern void sdio_unregister_driver(struct sdio_driver *);
56
Pierre Ossman46f555f2007-05-27 12:57:15 +020057/*
58 * SDIO I/O operations
59 */
60extern void sdio_claim_host(struct sdio_func *func);
61extern void sdio_release_host(struct sdio_func *func);
62
Pierre Ossmanfa64efa2007-05-27 14:22:37 +020063extern int sdio_enable_func(struct sdio_func *func);
64extern int sdio_disable_func(struct sdio_func *func);
65
Pierre Ossman46f555f2007-05-27 12:57:15 +020066extern unsigned char sdio_readb(struct sdio_func *func,
67 unsigned int addr, int *err_ret);
68
69extern void sdio_writeb(struct sdio_func *func, unsigned char b,
70 unsigned int addr, int *err_ret);
71
Pierre Ossmane29a7d72007-05-26 13:48:18 +020072#endif
73