cna_fwimg.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Linux network driver for QLogic BR-series Converged Network Adapter.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License (GPL) Version 2 as
  6. * published by the Free Software Foundation
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. */
  13. /*
  14. * Copyright (c) 2005-2014 Brocade Communications Systems, Inc.
  15. * Copyright (c) 2014-2015 QLogic Corporation
  16. * All rights reserved
  17. * www.qlogic.com
  18. */
  19. #include <linux/firmware.h>
  20. #include "bnad.h"
  21. #include "bfi.h"
  22. #include "cna.h"
  23. const struct firmware *bfi_fw;
  24. static u32 *bfi_image_ct_cna, *bfi_image_ct2_cna;
  25. static u32 bfi_image_ct_cna_size, bfi_image_ct2_cna_size;
  26. static u32 *
  27. cna_read_firmware(struct pci_dev *pdev, u32 **bfi_image,
  28. u32 *bfi_image_size, char *fw_name)
  29. {
  30. const struct firmware *fw;
  31. u32 n;
  32. if (request_firmware(&fw, fw_name, &pdev->dev))
  33. goto error;
  34. *bfi_image = (u32 *)fw->data;
  35. *bfi_image_size = fw->size/sizeof(u32);
  36. bfi_fw = fw;
  37. /* Convert loaded firmware to host order as it is stored in file
  38. * as sequence of LE32 integers.
  39. */
  40. for (n = 0; n < *bfi_image_size; n++)
  41. le32_to_cpus(*bfi_image + n);
  42. return *bfi_image;
  43. error:
  44. return NULL;
  45. }
  46. u32 *
  47. cna_get_firmware_buf(struct pci_dev *pdev)
  48. {
  49. if (pdev->device == BFA_PCI_DEVICE_ID_CT2) {
  50. if (bfi_image_ct2_cna_size == 0)
  51. cna_read_firmware(pdev, &bfi_image_ct2_cna,
  52. &bfi_image_ct2_cna_size, CNA_FW_FILE_CT2);
  53. return bfi_image_ct2_cna;
  54. } else if (bfa_asic_id_ct(pdev->device)) {
  55. if (bfi_image_ct_cna_size == 0)
  56. cna_read_firmware(pdev, &bfi_image_ct_cna,
  57. &bfi_image_ct_cna_size, CNA_FW_FILE_CT);
  58. return bfi_image_ct_cna;
  59. }
  60. return NULL;
  61. }
  62. u32 *
  63. bfa_cb_image_get_chunk(enum bfi_asic_gen asic_gen, u32 off)
  64. {
  65. switch (asic_gen) {
  66. case BFI_ASIC_GEN_CT:
  67. return (bfi_image_ct_cna + off);
  68. case BFI_ASIC_GEN_CT2:
  69. return (bfi_image_ct2_cna + off);
  70. default:
  71. return NULL;
  72. }
  73. }
  74. u32
  75. bfa_cb_image_get_size(enum bfi_asic_gen asic_gen)
  76. {
  77. switch (asic_gen) {
  78. case BFI_ASIC_GEN_CT:
  79. return bfi_image_ct_cna_size;
  80. case BFI_ASIC_GEN_CT2:
  81. return bfi_image_ct2_cna_size;
  82. default:
  83. return 0;
  84. }
  85. }