config.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /*
  2. * Filename: config.c
  3. *
  4. *
  5. * Authors: Joshua Morris <josh.h.morris@us.ibm.com>
  6. * Philip Kelleher <pjk1939@linux.vnet.ibm.com>
  7. *
  8. * (C) Copyright 2013 IBM Corporation
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software Foundation,
  22. * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. */
  24. #include <linux/types.h>
  25. #include <linux/crc32.h>
  26. #include <linux/swab.h>
  27. #include "rsxx_priv.h"
  28. #include "rsxx_cfg.h"
  29. static void initialize_config(struct rsxx_card_cfg *cfg)
  30. {
  31. cfg->hdr.version = RSXX_CFG_VERSION;
  32. cfg->data.block_size = RSXX_HW_BLK_SIZE;
  33. cfg->data.stripe_size = RSXX_HW_BLK_SIZE;
  34. cfg->data.vendor_id = RSXX_VENDOR_ID_IBM;
  35. cfg->data.cache_order = (-1);
  36. cfg->data.intr_coal.mode = RSXX_INTR_COAL_DISABLED;
  37. cfg->data.intr_coal.count = 0;
  38. cfg->data.intr_coal.latency = 0;
  39. }
  40. static u32 config_data_crc32(struct rsxx_card_cfg *cfg)
  41. {
  42. /*
  43. * Return the compliment of the CRC to ensure compatibility
  44. * (i.e. this is how early rsxx drivers did it.)
  45. */
  46. return ~crc32(~0, &cfg->data, sizeof(cfg->data));
  47. }
  48. /*----------------- Config Byte Swap Functions -------------------*/
  49. static void config_hdr_be_to_cpu(struct card_cfg_hdr *hdr)
  50. {
  51. hdr->version = be32_to_cpu((__force __be32) hdr->version);
  52. hdr->crc = be32_to_cpu((__force __be32) hdr->crc);
  53. }
  54. static void config_hdr_cpu_to_be(struct card_cfg_hdr *hdr)
  55. {
  56. hdr->version = (__force u32) cpu_to_be32(hdr->version);
  57. hdr->crc = (__force u32) cpu_to_be32(hdr->crc);
  58. }
  59. static void config_data_swab(struct rsxx_card_cfg *cfg)
  60. {
  61. u32 *data = (u32 *) &cfg->data;
  62. int i;
  63. for (i = 0; i < (sizeof(cfg->data) / 4); i++)
  64. data[i] = swab32(data[i]);
  65. }
  66. static void config_data_le_to_cpu(struct rsxx_card_cfg *cfg)
  67. {
  68. u32 *data = (u32 *) &cfg->data;
  69. int i;
  70. for (i = 0; i < (sizeof(cfg->data) / 4); i++)
  71. data[i] = le32_to_cpu((__force __le32) data[i]);
  72. }
  73. static void config_data_cpu_to_le(struct rsxx_card_cfg *cfg)
  74. {
  75. u32 *data = (u32 *) &cfg->data;
  76. int i;
  77. for (i = 0; i < (sizeof(cfg->data) / 4); i++)
  78. data[i] = (__force u32) cpu_to_le32(data[i]);
  79. }
  80. /*----------------- Config Operations ------------------*/
  81. static int rsxx_save_config(struct rsxx_cardinfo *card)
  82. {
  83. struct rsxx_card_cfg cfg;
  84. int st;
  85. memcpy(&cfg, &card->config, sizeof(cfg));
  86. if (unlikely(cfg.hdr.version != RSXX_CFG_VERSION)) {
  87. dev_err(CARD_TO_DEV(card),
  88. "Cannot save config with invalid version %d\n",
  89. cfg.hdr.version);
  90. return -EINVAL;
  91. }
  92. /* Convert data to little endian for the CRC calculation. */
  93. config_data_cpu_to_le(&cfg);
  94. cfg.hdr.crc = config_data_crc32(&cfg);
  95. /*
  96. * Swap the data from little endian to big endian so it can be
  97. * stored.
  98. */
  99. config_data_swab(&cfg);
  100. config_hdr_cpu_to_be(&cfg.hdr);
  101. st = rsxx_creg_write(card, CREG_ADD_CONFIG, sizeof(cfg), &cfg, 1);
  102. if (st)
  103. return st;
  104. return 0;
  105. }
  106. int rsxx_load_config(struct rsxx_cardinfo *card)
  107. {
  108. int st;
  109. u32 crc;
  110. st = rsxx_creg_read(card, CREG_ADD_CONFIG, sizeof(card->config),
  111. &card->config, 1);
  112. if (st) {
  113. dev_err(CARD_TO_DEV(card),
  114. "Failed reading card config.\n");
  115. return st;
  116. }
  117. config_hdr_be_to_cpu(&card->config.hdr);
  118. if (card->config.hdr.version == RSXX_CFG_VERSION) {
  119. /*
  120. * We calculate the CRC with the data in little endian, because
  121. * early drivers did not take big endian CPUs into account.
  122. * The data is always stored in big endian, so we need to byte
  123. * swap it before calculating the CRC.
  124. */
  125. config_data_swab(&card->config);
  126. /* Check the CRC */
  127. crc = config_data_crc32(&card->config);
  128. if (crc != card->config.hdr.crc) {
  129. dev_err(CARD_TO_DEV(card),
  130. "Config corruption detected!\n");
  131. dev_info(CARD_TO_DEV(card),
  132. "CRC (sb x%08x is x%08x)\n",
  133. card->config.hdr.crc, crc);
  134. return -EIO;
  135. }
  136. /* Convert the data to CPU byteorder */
  137. config_data_le_to_cpu(&card->config);
  138. } else if (card->config.hdr.version != 0) {
  139. dev_err(CARD_TO_DEV(card),
  140. "Invalid config version %d.\n",
  141. card->config.hdr.version);
  142. /*
  143. * Config version changes require special handling from the
  144. * user
  145. */
  146. return -EINVAL;
  147. } else {
  148. dev_info(CARD_TO_DEV(card),
  149. "Initializing card configuration.\n");
  150. initialize_config(&card->config);
  151. st = rsxx_save_config(card);
  152. if (st)
  153. return st;
  154. }
  155. card->config_valid = 1;
  156. dev_dbg(CARD_TO_DEV(card), "version: x%08x\n",
  157. card->config.hdr.version);
  158. dev_dbg(CARD_TO_DEV(card), "crc: x%08x\n",
  159. card->config.hdr.crc);
  160. dev_dbg(CARD_TO_DEV(card), "block_size: x%08x\n",
  161. card->config.data.block_size);
  162. dev_dbg(CARD_TO_DEV(card), "stripe_size: x%08x\n",
  163. card->config.data.stripe_size);
  164. dev_dbg(CARD_TO_DEV(card), "vendor_id: x%08x\n",
  165. card->config.data.vendor_id);
  166. dev_dbg(CARD_TO_DEV(card), "cache_order: x%08x\n",
  167. card->config.data.cache_order);
  168. dev_dbg(CARD_TO_DEV(card), "mode: x%08x\n",
  169. card->config.data.intr_coal.mode);
  170. dev_dbg(CARD_TO_DEV(card), "count: x%08x\n",
  171. card->config.data.intr_coal.count);
  172. dev_dbg(CARD_TO_DEV(card), "latency: x%08x\n",
  173. card->config.data.intr_coal.latency);
  174. return 0;
  175. }