Merge branch 'akpm'
[deliverable/linux.git] / drivers / net / wimax / i2400m / i2400m-sdio.h
1 /*
2 * Intel Wireless WiMAX Connection 2400m
3 * SDIO-specific i2400m driver definitions
4 *
5 *
6 * Copyright (C) 2007-2008 Intel Corporation. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in
16 * the documentation and/or other materials provided with the
17 * distribution.
18 * * Neither the name of Intel Corporation nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 *
35 * Intel Corporation <linux-wimax@intel.com>
36 * Brian Bian <brian.bian@intel.com>
37 * Dirk Brandewie <dirk.j.brandewie@intel.com>
38 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
39 * Yanir Lubetkin <yanirx.lubetkin@intel.com>
40 * - Initial implementation
41 *
42 *
43 * This driver implements the bus-specific part of the i2400m for
44 * SDIO. Check i2400m.h for a generic driver description.
45 *
46 * ARCHITECTURE
47 *
48 * This driver sits under the bus-generic i2400m driver, providing the
49 * connection to the device.
50 *
51 * When probed, all the function pointers are setup and then the
52 * bus-generic code called. The generic driver will then use the
53 * provided pointers for uploading firmware (i2400ms_bus_bm*() in
54 * sdio-fw.c) and then setting up the device (i2400ms_dev_*() in
55 * sdio.c).
56 *
57 * Once firmware is uploaded, TX functions (sdio-tx.c) are called when
58 * data is ready for transmission in the TX fifo; then the SDIO IRQ is
59 * fired and data is available (sdio-rx.c), it is sent to the generic
60 * driver for processing with i2400m_rx.
61 */
62
63 #ifndef __I2400M_SDIO_H__
64 #define __I2400M_SDIO_H__
65
66 #include "i2400m.h"
67
68 /* Host-Device interface for SDIO */
69 enum {
70 I2400MS_BLK_SIZE = 256,
71 I2400MS_PL_SIZE_MAX = 0x3E00,
72
73 I2400MS_DATA_ADDR = 0x0,
74 I2400MS_INTR_STATUS_ADDR = 0x13,
75 I2400MS_INTR_CLEAR_ADDR = 0x13,
76 I2400MS_INTR_ENABLE_ADDR = 0x14,
77 I2400MS_INTR_GET_SIZE_ADDR = 0x2C,
78 /* The number of ticks to wait for the device to signal that
79 * it is ready */
80 I2400MS_INIT_SLEEP_INTERVAL = 10,
81 /* How long to wait for the device to settle after reset */
82 I2400MS_SETTLE_TIME = 40,
83 };
84
85
86 /**
87 * struct i2400ms - descriptor for a SDIO connected i2400m
88 *
89 * @i2400m: bus-generic i2400m implementation; has to be first (see
90 * it's documentation in i2400m.h).
91 *
92 * @func: pointer to our SDIO function
93 *
94 * @tx_worker: workqueue struct used to TX data when the bus-generic
95 * code signals packets are pending for transmission to the device.
96 *
97 * @tx_workqueue: workqeueue used for data TX; we don't use the
98 * system's workqueue as that might cause deadlocks with code in
99 * the bus-generic driver.
100 */
101 struct i2400ms {
102 struct i2400m i2400m; /* FIRST! See doc */
103 struct sdio_func *func;
104
105 struct work_struct tx_worker;
106 struct workqueue_struct *tx_workqueue;
107 char tx_wq_name[32];
108
109 struct dentry *debugfs_dentry;
110
111 wait_queue_head_t bm_wfa_wq;
112 int bm_wait_result;
113 size_t bm_ack_size;
114 };
115
116
117 static inline
118 void i2400ms_init(struct i2400ms *i2400ms)
119 {
120 i2400m_init(&i2400ms->i2400m);
121 }
122
123
124 extern int i2400ms_rx_setup(struct i2400ms *);
125 extern void i2400ms_rx_release(struct i2400ms *);
126 extern ssize_t __i2400ms_rx_get_size(struct i2400ms *);
127
128 extern int i2400ms_tx_setup(struct i2400ms *);
129 extern void i2400ms_tx_release(struct i2400ms *);
130 extern void i2400ms_bus_tx_kick(struct i2400m *);
131
132 extern ssize_t i2400ms_bus_bm_cmd_send(struct i2400m *,
133 const struct i2400m_bootrom_header *,
134 size_t, int);
135 extern ssize_t i2400ms_bus_bm_wait_for_ack(struct i2400m *,
136 struct i2400m_bootrom_header *,
137 size_t);
138 extern void i2400ms_bus_bm_release(struct i2400m *);
139 extern int i2400ms_bus_bm_setup(struct i2400m *);
140
141 #endif /* #ifndef __I2400M_SDIO_H__ */
This page took 0.036203 seconds and 5 git commands to generate.