Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
base.c
Go to the documentation of this file.
1 /*
2  * Copyright 2012 Red Hat Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs
23  */
24 
25 #include <core/object.h>
26 #include <core/device.h>
27 #include <core/subdev.h>
28 #include <core/option.h>
29 
30 #include <subdev/bios.h>
31 #include <subdev/bios/bmp.h>
32 #include <subdev/bios/bit.h>
33 
34 u8
36 {
37  u8 sum = 0;
38  while (size--)
39  sum += *data++;
40  return sum;
41 }
42 
43 u16
44 nvbios_findstr(const u8 *data, int size, const char *str, int len)
45 {
46  int i, j;
47 
48  for (i = 0; i <= (size - len); i++) {
49  for (j = 0; j < len; j++)
50  if ((char)data[i + j] != str[j])
51  break;
52  if (j == len)
53  return i;
54  }
55 
56  return 0;
57 }
58 
59 #if defined(__powerpc__)
60 static void
61 nouveau_bios_shadow_of(struct nouveau_bios *bios)
62 {
63  struct pci_dev *pdev = nv_device(bios)->pdev;
64  struct device_node *dn;
65  const u32 *data;
66  int size, i;
67 
68  dn = pci_device_to_OF_node(pdev);
69  if (!dn) {
70  nv_info(bios, "Unable to get the OF node\n");
71  return;
72  }
73 
74  data = of_get_property(dn, "NVDA,BMP", &size);
75  if (data && size) {
76  bios->size = size;
77  bios->data = kmalloc(bios->size, GFP_KERNEL);
78  if (bios->data)
79  memcpy(bios->data, data, size);
80  }
81 }
82 #endif
83 
84 static void
85 nouveau_bios_shadow_pramin(struct nouveau_bios *bios)
86 {
87  struct nouveau_device *device = nv_device(bios);
88  u32 bar0 = 0;
89  int i;
90 
91  if (device->card_type >= NV_50) {
92  u64 addr = (u64)(nv_rd32(bios, 0x619f04) & 0xffffff00) << 8;
93  if (!addr) {
94  addr = (u64)nv_rd32(bios, 0x001700) << 16;
95  addr += 0xf0000;
96  }
97 
98  bar0 = nv_mask(bios, 0x001700, 0xffffffff, addr >> 16);
99  }
100 
101  /* bail if no rom signature */
102  if (nv_rd08(bios, 0x700000) != 0x55 ||
103  nv_rd08(bios, 0x700001) != 0xaa)
104  goto out;
105 
106  bios->size = nv_rd08(bios, 0x700002) * 512;
107  if (!bios->size)
108  goto out;
109 
110  bios->data = kmalloc(bios->size, GFP_KERNEL);
111  if (bios->data) {
112  for (i = 0; i < bios->size; i++)
113  nv_wo08(bios, i, nv_rd08(bios, 0x700000 + i));
114  }
115 
116 out:
117  if (device->card_type >= NV_50)
118  nv_wr32(bios, 0x001700, bar0);
119 }
120 
121 static void
122 nouveau_bios_shadow_prom(struct nouveau_bios *bios)
123 {
124  struct nouveau_device *device = nv_device(bios);
125  u32 pcireg, access;
126  u16 pcir;
127  int i;
128 
129  /* enable access to rom */
130  if (device->card_type >= NV_50)
131  pcireg = 0x088050;
132  else
133  pcireg = 0x001850;
134  access = nv_mask(bios, pcireg, 0x00000001, 0x00000000);
135 
136  /* bail if no rom signature, with a workaround for a PROM reading
137  * issue on some chipsets. the first read after a period of
138  * inactivity returns the wrong result, so retry the first header
139  * byte a few times before giving up as a workaround
140  */
141  i = 16;
142  do {
143  if (nv_rd08(bios, 0x300000) == 0x55)
144  break;
145  } while (i--);
146 
147  if (!i || nv_rd08(bios, 0x300001) != 0xaa)
148  goto out;
149 
150  /* additional check (see note below) - read PCI record header */
151  pcir = nv_rd08(bios, 0x300018) |
152  nv_rd08(bios, 0x300019) << 8;
153  if (nv_rd08(bios, 0x300000 + pcir) != 'P' ||
154  nv_rd08(bios, 0x300001 + pcir) != 'C' ||
155  nv_rd08(bios, 0x300002 + pcir) != 'I' ||
156  nv_rd08(bios, 0x300003 + pcir) != 'R')
157  goto out;
158 
159  /* read entire bios image to system memory */
160  bios->size = nv_rd08(bios, 0x300002) * 512;
161  if (!bios->size)
162  goto out;
163 
164  bios->data = kmalloc(bios->size, GFP_KERNEL);
165  if (bios->data) {
166  for (i = 0; i < bios->size; i++)
167  nv_wo08(bios, i, nv_rd08(bios, 0x300000 + i));
168  }
169 
170 out:
171  /* disable access to rom */
172  nv_wr32(bios, pcireg, access);
173 }
174 
175 #if defined(CONFIG_ACPI)
176 int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len);
177 bool nouveau_acpi_rom_supported(struct pci_dev *pdev);
178 #else
179 static inline bool
180 nouveau_acpi_rom_supported(struct pci_dev *pdev) {
181  return false;
182 }
183 
184 static inline int
185 nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len) {
186  return -EINVAL;
187 }
188 #endif
189 
190 static void
191 nouveau_bios_shadow_acpi(struct nouveau_bios *bios)
192 {
193  struct pci_dev *pdev = nv_device(bios)->pdev;
194  int ret, cnt, i;
195 
196  if (!nouveau_acpi_rom_supported(pdev)) {
197  bios->data = NULL;
198  return;
199  }
200 
201  bios->size = 0;
202  bios->data = kmalloc(4096, GFP_KERNEL);
203  if (bios->data) {
204  if (nouveau_acpi_get_bios_chunk(bios->data, 0, 4096) == 4096)
205  bios->size = bios->data[2] * 512;
206  kfree(bios->data);
207  }
208 
209  if (!bios->size)
210  return;
211 
212  bios->data = kmalloc(bios->size, GFP_KERNEL);
213  for (i = 0; bios->data && i < bios->size; i += cnt) {
214  cnt = min((bios->size - i), (u32)4096);
215  ret = nouveau_acpi_get_bios_chunk(bios->data, i, cnt);
216  if (ret != cnt)
217  break;
218  }
219 }
220 
221 static void
222 nouveau_bios_shadow_pci(struct nouveau_bios *bios)
223 {
224  struct pci_dev *pdev = nv_device(bios)->pdev;
225  size_t size;
226 
227  if (!pci_enable_rom(pdev)) {
228  void __iomem *rom = pci_map_rom(pdev, &size);
229  if (rom && size) {
230  bios->data = kmalloc(size, GFP_KERNEL);
231  if (bios->data) {
232  memcpy_fromio(bios->data, rom, size);
233  bios->size = size;
234  }
235  }
236  if (rom)
237  pci_unmap_rom(pdev, rom);
238 
239  pci_disable_rom(pdev);
240  }
241 }
242 
243 static int
244 nouveau_bios_score(struct nouveau_bios *bios, const bool writeable)
245 {
246  if (bios->size < 3 || !bios->data || bios->data[0] != 0x55 ||
247  bios->data[1] != 0xAA) {
248  nv_info(bios, "... signature not found\n");
249  return 0;
250  }
251 
252  if (nvbios_checksum(bios->data,
253  min_t(u32, bios->data[2] * 512, bios->size))) {
254  nv_info(bios, "... checksum invalid\n");
255  /* if a ro image is somewhat bad, it's probably all rubbish */
256  return writeable ? 2 : 1;
257  }
258 
259  nv_info(bios, "... appears to be valid\n");
260  return 3;
261 }
262 
263 struct methods {
264  const char desc[16];
265  void (*shadow)(struct nouveau_bios *);
266  const bool rw;
267  int score;
270 };
271 
272 static int
273 nouveau_bios_shadow(struct nouveau_bios *bios)
274 {
275  struct methods shadow_methods[] = {
276 #if defined(__powerpc__)
277  { "OpenFirmware", nouveau_bios_shadow_of, true, 0, 0, NULL },
278 #endif
279  { "PRAMIN", nouveau_bios_shadow_pramin, true, 0, 0, NULL },
280  { "PROM", nouveau_bios_shadow_prom, false, 0, 0, NULL },
281  { "ACPI", nouveau_bios_shadow_acpi, true, 0, 0, NULL },
282  { "PCIROM", nouveau_bios_shadow_pci, true, 0, 0, NULL },
283  {}
284  };
285  struct methods *mthd, *best;
286  const struct firmware *fw;
287  const char *optarg;
288  int optlen, ret;
289  char *source;
290 
291  optarg = nouveau_stropt(nv_device(bios)->cfgopt, "NvBios", &optlen);
292  source = optarg ? kstrndup(optarg, optlen, GFP_KERNEL) : NULL;
293  if (source) {
294  /* try to match one of the built-in methods */
295  mthd = shadow_methods;
296  do {
297  if (strcasecmp(source, mthd->desc))
298  continue;
299  nv_info(bios, "source: %s\n", mthd->desc);
300 
301  mthd->shadow(bios);
302  mthd->score = nouveau_bios_score(bios, mthd->rw);
303  if (mthd->score) {
304  kfree(source);
305  return 0;
306  }
307  } while ((++mthd)->shadow);
308 
309  /* attempt to load firmware image */
310  ret = request_firmware(&fw, source, &nv_device(bios)->pdev->dev);
311  if (ret == 0) {
312  bios->size = fw->size;
313  bios->data = kmemdup(fw->data, fw->size, GFP_KERNEL);
314  release_firmware(fw);
315 
316  nv_info(bios, "image: %s\n", source);
317  if (nouveau_bios_score(bios, 1)) {
318  kfree(source);
319  return 0;
320  }
321 
322  kfree(bios->data);
323  bios->data = NULL;
324  }
325 
326  nv_error(bios, "source \'%s\' invalid\n", source);
327  kfree(source);
328  }
329 
330  mthd = shadow_methods;
331  do {
332  nv_info(bios, "checking %s for image...\n", mthd->desc);
333  mthd->shadow(bios);
334  mthd->score = nouveau_bios_score(bios, mthd->rw);
335  mthd->size = bios->size;
336  mthd->data = bios->data;
337  bios->data = NULL;
338  } while (mthd->score != 3 && (++mthd)->shadow);
339 
340  mthd = shadow_methods;
341  best = mthd;
342  do {
343  if (mthd->score > best->score) {
344  kfree(best->data);
345  best = mthd;
346  }
347  } while ((++mthd)->shadow);
348 
349  if (best->score) {
350  nv_info(bios, "using image from %s\n", best->desc);
351  bios->size = best->size;
352  bios->data = best->data;
353  return 0;
354  }
355 
356  nv_error(bios, "unable to locate usable image\n");
357  return -EINVAL;
358 }
359 
360 static u8
361 nouveau_bios_rd08(struct nouveau_object *object, u32 addr)
362 {
363  struct nouveau_bios *bios = (void *)object;
364  return bios->data[addr];
365 }
366 
367 static u16
368 nouveau_bios_rd16(struct nouveau_object *object, u32 addr)
369 {
370  struct nouveau_bios *bios = (void *)object;
371  return get_unaligned_le16(&bios->data[addr]);
372 }
373 
374 static u32
375 nouveau_bios_rd32(struct nouveau_object *object, u32 addr)
376 {
377  struct nouveau_bios *bios = (void *)object;
378  return get_unaligned_le32(&bios->data[addr]);
379 }
380 
381 static void
382 nouveau_bios_wr08(struct nouveau_object *object, u32 addr, u8 data)
383 {
384  struct nouveau_bios *bios = (void *)object;
385  bios->data[addr] = data;
386 }
387 
388 static void
389 nouveau_bios_wr16(struct nouveau_object *object, u32 addr, u16 data)
390 {
391  struct nouveau_bios *bios = (void *)object;
392  put_unaligned_le16(data, &bios->data[addr]);
393 }
394 
395 static void
396 nouveau_bios_wr32(struct nouveau_object *object, u32 addr, u32 data)
397 {
398  struct nouveau_bios *bios = (void *)object;
399  put_unaligned_le32(data, &bios->data[addr]);
400 }
401 
402 static int
403 nouveau_bios_ctor(struct nouveau_object *parent,
404  struct nouveau_object *engine,
405  struct nouveau_oclass *oclass, void *data, u32 size,
406  struct nouveau_object **pobject)
407 {
408  struct nouveau_bios *bios;
409  struct bit_entry bit_i;
410  int ret;
411 
412  ret = nouveau_subdev_create(parent, engine, oclass, 0,
413  "VBIOS", "bios", &bios);
414  *pobject = nv_object(bios);
415  if (ret)
416  return ret;
417 
418  ret = nouveau_bios_shadow(bios);
419  if (ret)
420  return ret;
421 
422  /* detect type of vbios we're dealing with */
423  bios->bmp_offset = nvbios_findstr(bios->data, bios->size,
424  "\xff\x7f""NV\0", 5);
425  if (bios->bmp_offset) {
426  nv_info(bios, "BMP version %x.%x\n",
427  bmp_version(bios) >> 8,
428  bmp_version(bios) & 0xff);
429  }
430 
431  bios->bit_offset = nvbios_findstr(bios->data, bios->size,
432  "\xff\xb8""BIT", 5);
433  if (bios->bit_offset)
434  nv_info(bios, "BIT signature found\n");
435 
436  /* determine the vbios version number */
437  if (!bit_entry(bios, 'i', &bit_i) && bit_i.length >= 4) {
438  bios->version.major = nv_ro08(bios, bit_i.offset + 3);
439  bios->version.chip = nv_ro08(bios, bit_i.offset + 2);
440  bios->version.minor = nv_ro08(bios, bit_i.offset + 1);
441  bios->version.micro = nv_ro08(bios, bit_i.offset + 0);
442  } else
443  if (bmp_version(bios)) {
444  bios->version.major = nv_ro08(bios, bios->bmp_offset + 13);
445  bios->version.chip = nv_ro08(bios, bios->bmp_offset + 12);
446  bios->version.minor = nv_ro08(bios, bios->bmp_offset + 11);
447  bios->version.micro = nv_ro08(bios, bios->bmp_offset + 10);
448  }
449 
450  nv_info(bios, "version %02x.%02x.%02x.%02x\n",
451  bios->version.major, bios->version.chip,
452  bios->version.minor, bios->version.micro);
453 
454  return 0;
455 }
456 
457 static void
458 nouveau_bios_dtor(struct nouveau_object *object)
459 {
460  struct nouveau_bios *bios = (void *)object;
461  kfree(bios->data);
463 }
464 
465 static int
466 nouveau_bios_init(struct nouveau_object *object)
467 {
468  struct nouveau_bios *bios = (void *)object;
469  return nouveau_subdev_init(&bios->base);
470 }
471 
472 static int
473 nouveau_bios_fini(struct nouveau_object *object, bool suspend)
474 {
475  struct nouveau_bios *bios = (void *)object;
476  return nouveau_subdev_fini(&bios->base, suspend);
477 }
478 
479 struct nouveau_oclass
481  .handle = NV_SUBDEV(VBIOS, 0x00),
482  .ofuncs = &(struct nouveau_ofuncs) {
483  .ctor = nouveau_bios_ctor,
484  .dtor = nouveau_bios_dtor,
485  .init = nouveau_bios_init,
486  .fini = nouveau_bios_fini,
487  .rd08 = nouveau_bios_rd08,
488  .rd16 = nouveau_bios_rd16,
489  .rd32 = nouveau_bios_rd32,
490  .wr08 = nouveau_bios_wr08,
491  .wr16 = nouveau_bios_wr16,
492  .wr32 = nouveau_bios_wr32,
493  },
494 };