GNU Linux-libre 4.19.286-gnu1
[releases.git] / drivers / mmc / core / sdio_cis.c
1 /*
2  * linux/drivers/mmc/core/sdio_cis.c
3  *
4  * Author:      Nicolas Pitre
5  * Created:     June 11, 2007
6  * Copyright:   MontaVista Software Inc.
7  *
8  * Copyright 2007 Pierre Ossman
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or (at
13  * your option) any later version.
14  */
15
16 #include <linux/kernel.h>
17 #include <linux/slab.h>
18
19 #include <linux/mmc/host.h>
20 #include <linux/mmc/card.h>
21 #include <linux/mmc/sdio.h>
22 #include <linux/mmc/sdio_func.h>
23
24 #include "sdio_cis.h"
25 #include "sdio_ops.h"
26
27 #define SDIO_READ_CIS_TIMEOUT_MS  (10 * 1000) /* 10s */
28
29 static int cistpl_vers_1(struct mmc_card *card, struct sdio_func *func,
30                          const unsigned char *buf, unsigned size)
31 {
32         unsigned i, nr_strings;
33         char **buffer, *string;
34
35         if (size < 2)
36                 return 0;
37
38         /* Find all null-terminated (including zero length) strings in
39            the TPLLV1_INFO field. Trailing garbage is ignored. */
40         buf += 2;
41         size -= 2;
42
43         nr_strings = 0;
44         for (i = 0; i < size; i++) {
45                 if (buf[i] == 0xff)
46                         break;
47                 if (buf[i] == 0)
48                         nr_strings++;
49         }
50         if (nr_strings == 0)
51                 return 0;
52
53         size = i;
54
55         buffer = kzalloc(sizeof(char*) * nr_strings + size, GFP_KERNEL);
56         if (!buffer)
57                 return -ENOMEM;
58
59         string = (char*)(buffer + nr_strings);
60
61         for (i = 0; i < nr_strings; i++) {
62                 buffer[i] = string;
63                 strcpy(string, buf);
64                 string += strlen(string) + 1;
65                 buf += strlen(buf) + 1;
66         }
67
68         if (func) {
69                 func->num_info = nr_strings;
70                 func->info = (const char**)buffer;
71         } else {
72                 card->num_info = nr_strings;
73                 card->info = (const char**)buffer;
74         }
75
76         return 0;
77 }
78
79 static int cistpl_manfid(struct mmc_card *card, struct sdio_func *func,
80                          const unsigned char *buf, unsigned size)
81 {
82         unsigned int vendor, device;
83
84         /* TPLMID_MANF */
85         vendor = buf[0] | (buf[1] << 8);
86
87         /* TPLMID_CARD */
88         device = buf[2] | (buf[3] << 8);
89
90         if (func) {
91                 func->vendor = vendor;
92                 func->device = device;
93         } else {
94                 card->cis.vendor = vendor;
95                 card->cis.device = device;
96         }
97
98         return 0;
99 }
100
101 static const unsigned char speed_val[16] =
102         { 0, 10, 12, 13, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 70, 80 };
103 static const unsigned int speed_unit[8] =
104         { 10000, 100000, 1000000, 10000000, 0, 0, 0, 0 };
105
106
107 typedef int (tpl_parse_t)(struct mmc_card *, struct sdio_func *,
108                            const unsigned char *, unsigned);
109
110 struct cis_tpl {
111         unsigned char code;
112         unsigned char min_size;
113         tpl_parse_t *parse;
114 };
115
116 static int cis_tpl_parse(struct mmc_card *card, struct sdio_func *func,
117                          const char *tpl_descr,
118                          const struct cis_tpl *tpl, int tpl_count,
119                          unsigned char code,
120                          const unsigned char *buf, unsigned size)
121 {
122         int i, ret;
123
124         /* look for a matching code in the table */
125         for (i = 0; i < tpl_count; i++, tpl++) {
126                 if (tpl->code == code)
127                         break;
128         }
129         if (i < tpl_count) {
130                 if (size >= tpl->min_size) {
131                         if (tpl->parse)
132                                 ret = tpl->parse(card, func, buf, size);
133                         else
134                                 ret = -EILSEQ;  /* known tuple, not parsed */
135                 } else {
136                         /* invalid tuple */
137                         ret = -EINVAL;
138                 }
139                 if (ret && ret != -EILSEQ && ret != -ENOENT) {
140                         pr_err("%s: bad %s tuple 0x%02x (%u bytes)\n",
141                                mmc_hostname(card->host), tpl_descr, code, size);
142                 }
143         } else {
144                 /* unknown tuple */
145                 ret = -ENOENT;
146         }
147
148         return ret;
149 }
150
151 static int cistpl_funce_common(struct mmc_card *card, struct sdio_func *func,
152                                const unsigned char *buf, unsigned size)
153 {
154         /* Only valid for the common CIS (function 0) */
155         if (func)
156                 return -EINVAL;
157
158         /* TPLFE_FN0_BLK_SIZE */
159         card->cis.blksize = buf[1] | (buf[2] << 8);
160
161         /* TPLFE_MAX_TRAN_SPEED */
162         card->cis.max_dtr = speed_val[(buf[3] >> 3) & 15] *
163                             speed_unit[buf[3] & 7];
164
165         return 0;
166 }
167
168 static int cistpl_funce_func(struct mmc_card *card, struct sdio_func *func,
169                              const unsigned char *buf, unsigned size)
170 {
171         unsigned vsn;
172         unsigned min_size;
173
174         /* Only valid for the individual function's CIS (1-7) */
175         if (!func)
176                 return -EINVAL;
177
178         /*
179          * This tuple has a different length depending on the SDIO spec
180          * version.
181          */
182         vsn = func->card->cccr.sdio_vsn;
183         min_size = (vsn == SDIO_SDIO_REV_1_00) ? 28 : 42;
184
185         if (size == 28 && vsn == SDIO_SDIO_REV_1_10) {
186                 pr_warn("%s: card has broken SDIO 1.1 CIS, forcing SDIO 1.0\n",
187                         mmc_hostname(card->host));
188                 vsn = SDIO_SDIO_REV_1_00;
189         } else if (size < min_size) {
190                 return -EINVAL;
191         }
192
193         /* TPLFE_MAX_BLK_SIZE */
194         func->max_blksize = buf[12] | (buf[13] << 8);
195
196         /* TPLFE_ENABLE_TIMEOUT_VAL, present in ver 1.1 and above */
197         if (vsn > SDIO_SDIO_REV_1_00)
198                 func->enable_timeout = (buf[28] | (buf[29] << 8)) * 10;
199         else
200                 func->enable_timeout = jiffies_to_msecs(HZ);
201
202         return 0;
203 }
204
205 /*
206  * Known TPLFE_TYPEs table for CISTPL_FUNCE tuples.
207  *
208  * Note that, unlike PCMCIA, CISTPL_FUNCE tuples are not parsed depending
209  * on the TPLFID_FUNCTION value of the previous CISTPL_FUNCID as on SDIO
210  * TPLFID_FUNCTION is always hardcoded to 0x0C.
211  */
212 static const struct cis_tpl cis_tpl_funce_list[] = {
213         {       0x00,   4,      cistpl_funce_common             },
214         {       0x01,   0,      cistpl_funce_func               },
215         {       0x04,   1+1+6,  /* CISTPL_FUNCE_LAN_NODE_ID */  },
216 };
217
218 static int cistpl_funce(struct mmc_card *card, struct sdio_func *func,
219                         const unsigned char *buf, unsigned size)
220 {
221         if (size < 1)
222                 return -EINVAL;
223
224         return cis_tpl_parse(card, func, "CISTPL_FUNCE",
225                              cis_tpl_funce_list,
226                              ARRAY_SIZE(cis_tpl_funce_list),
227                              buf[0], buf, size);
228 }
229
230 /* Known TPL_CODEs table for CIS tuples */
231 static const struct cis_tpl cis_tpl_list[] = {
232         {       0x15,   3,      cistpl_vers_1           },
233         {       0x20,   4,      cistpl_manfid           },
234         {       0x21,   2,      /* cistpl_funcid */     },
235         {       0x22,   0,      cistpl_funce            },
236         {       0x91,   2,      /* cistpl_sdio_std */   },
237 };
238
239 static int sdio_read_cis(struct mmc_card *card, struct sdio_func *func)
240 {
241         int ret;
242         struct sdio_func_tuple *this, **prev;
243         unsigned i, ptr = 0;
244
245         /*
246          * Note that this works for the common CIS (function number 0) as
247          * well as a function's CIS * since SDIO_CCCR_CIS and SDIO_FBR_CIS
248          * have the same offset.
249          */
250         for (i = 0; i < 3; i++) {
251                 unsigned char x, fn;
252
253                 if (func)
254                         fn = func->num;
255                 else
256                         fn = 0;
257
258                 ret = mmc_io_rw_direct(card, 0, 0,
259                         SDIO_FBR_BASE(fn) + SDIO_FBR_CIS + i, 0, &x);
260                 if (ret)
261                         return ret;
262                 ptr |= x << (i * 8);
263         }
264
265         if (func)
266                 prev = &func->tuples;
267         else
268                 prev = &card->tuples;
269
270         if (*prev)
271                 return -EINVAL;
272
273         do {
274                 unsigned char tpl_code, tpl_link;
275                 unsigned long timeout = jiffies +
276                         msecs_to_jiffies(SDIO_READ_CIS_TIMEOUT_MS);
277
278                 ret = mmc_io_rw_direct(card, 0, 0, ptr++, 0, &tpl_code);
279                 if (ret)
280                         break;
281
282                 /* 0xff means we're done */
283                 if (tpl_code == 0xff)
284                         break;
285
286                 /* null entries have no link field or data */
287                 if (tpl_code == 0x00)
288                         continue;
289
290                 ret = mmc_io_rw_direct(card, 0, 0, ptr++, 0, &tpl_link);
291                 if (ret)
292                         break;
293
294                 /* a size of 0xff also means we're done */
295                 if (tpl_link == 0xff)
296                         break;
297
298                 this = kmalloc(sizeof(*this) + tpl_link, GFP_KERNEL);
299                 if (!this)
300                         return -ENOMEM;
301
302                 for (i = 0; i < tpl_link; i++) {
303                         ret = mmc_io_rw_direct(card, 0, 0,
304                                                ptr + i, 0, &this->data[i]);
305                         if (ret)
306                                 break;
307                 }
308                 if (ret) {
309                         kfree(this);
310                         break;
311                 }
312
313                 /* Try to parse the CIS tuple */
314                 ret = cis_tpl_parse(card, func, "CIS",
315                                     cis_tpl_list, ARRAY_SIZE(cis_tpl_list),
316                                     tpl_code, this->data, tpl_link);
317                 if (ret == -EILSEQ || ret == -ENOENT) {
318                         /*
319                          * The tuple is unknown or known but not parsed.
320                          * Queue the tuple for the function driver.
321                          */
322                         this->next = NULL;
323                         this->code = tpl_code;
324                         this->size = tpl_link;
325                         *prev = this;
326                         prev = &this->next;
327
328                         if (ret == -ENOENT) {
329                                 if (time_after(jiffies, timeout))
330                                         break;
331                                 /* warn about unknown tuples */
332                                 pr_warn_ratelimited("%s: queuing unknown"
333                                        " CIS tuple 0x%02x (%u bytes)\n",
334                                        mmc_hostname(card->host),
335                                        tpl_code, tpl_link);
336                         }
337
338                         /* keep on analyzing tuples */
339                         ret = 0;
340                 } else {
341                         /*
342                          * We don't need the tuple anymore if it was
343                          * successfully parsed by the SDIO core or if it is
344                          * not going to be queued for a driver.
345                          */
346                         kfree(this);
347                 }
348
349                 ptr += tpl_link;
350         } while (!ret);
351
352         /*
353          * Link in all unknown tuples found in the common CIS so that
354          * drivers don't have to go digging in two places.
355          */
356         if (func)
357                 *prev = card->tuples;
358
359         return ret;
360 }
361
362 int sdio_read_common_cis(struct mmc_card *card)
363 {
364         return sdio_read_cis(card, NULL);
365 }
366
367 void sdio_free_common_cis(struct mmc_card *card)
368 {
369         struct sdio_func_tuple *tuple, *victim;
370
371         tuple = card->tuples;
372
373         while (tuple) {
374                 victim = tuple;
375                 tuple = tuple->next;
376                 kfree(victim);
377         }
378
379         card->tuples = NULL;
380 }
381
382 int sdio_read_func_cis(struct sdio_func *func)
383 {
384         int ret;
385
386         ret = sdio_read_cis(func->card, func);
387         if (ret)
388                 return ret;
389
390         /*
391          * Vendor/device id is optional for function CIS, so
392          * copy it from the card structure as needed.
393          */
394         if (func->vendor == 0) {
395                 func->vendor = func->card->cis.vendor;
396                 func->device = func->card->cis.device;
397         }
398
399         return 0;
400 }
401
402 void sdio_free_func_cis(struct sdio_func *func)
403 {
404         struct sdio_func_tuple *tuple, *victim;
405
406         tuple = func->tuples;
407
408         while (tuple && tuple != func->card->tuples) {
409                 victim = tuple;
410                 tuple = tuple->next;
411                 kfree(victim);
412         }
413
414         func->tuples = NULL;
415 }
416