spinand_acts.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. //#define DT_DRV_COMPAT actions_acts_flash
  7. #include <errno.h>
  8. #include <disk/disk_access.h>
  9. #include "spinand_acts.h"
  10. #include <drivers/spinand.h>
  11. #include <board.h>
  12. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  13. #include <dvfs.h>
  14. #endif
  15. #ifdef CONFIG_BOARD_NANDBOOT
  16. #define TRY_DELAYCHAIN 40
  17. #else
  18. #define TRY_DELAYCHAIN 20
  19. #endif
  20. #define ID_TBL_MAGIC 0x53648673
  21. #define ID_TBL_ADDR soc_boot_get_nandid_tbl_addr()
  22. #ifndef CONFIG_SPINAND_LIB
  23. //spinand code rom api address
  24. #ifdef CONFIG_SOC_LEOPARD
  25. #define SPINAND_API_ADDR 0x00007000
  26. #else
  27. #define SPINAND_API_ADDR 0x00006800
  28. #endif
  29. #define p_spinand_api ((struct spinand_operation_api *)SPINAND_API_ADDR)
  30. #endif
  31. #define STA_NODISK 0x02 /* No medium in the drive */
  32. #define STA_DISK_OK 0x08 /* Medium OK in the drive */
  33. #define LIB_LOG_LEVEL WARN_LEVEL
  34. #define HEAP_SIZE (14*1024)
  35. uint32_t api_bss[HEAP_SIZE/4];
  36. struct k_mutex mutex;
  37. #define SECTOR_SIZE 512
  38. #ifndef CONFIG_SPINAND_DATA
  39. #define CONFIG_SPINAND_DATA 1
  40. #endif
  41. #include <logging/log.h>
  42. LOG_MODULE_REGISTER(spinand_acts, CONFIG_FLASH_LOG_LEVEL);
  43. static bool spinand_initial;
  44. #ifdef CONFIG_PM_DEVICE
  45. static bool spinand_resume;
  46. int spinand_resume_init(struct spinand_info *sni);
  47. #endif
  48. void set_spinand_spimfp();
  49. static uint32_t spinand_max_sectors;
  50. static struct nand_info system_spinand = {
  51. .base = SPI0_REG_BASE+(0x4000*CONFIG_SPINAND_USE_SPICONTROLER),
  52. .bus_width = CONFIG_SPINAND_FLASH_BUS_WIDTH,
  53. .delay_chain = 0,
  54. .spi_mode = 3,
  55. .data = CONFIG_SPINAND_DATA,
  56. .dma_base = DMA_REG_BASE+0x100+(CONFIG_DMA_SPINAND_RESEVER_CHAN*0x100), //DMA9
  57. .printf = (void *)printk,
  58. .loglevel = LIB_LOG_LEVEL,
  59. };
  60. static struct spinand_info spinand_acts_data = {
  61. .protect = 1,
  62. };
  63. static int spinand_acts_read(const struct device *dev, off_t offset, void *data, size_t len)
  64. {
  65. if (((offset % 512) != 0) || ((len % 512 != 0))) {
  66. LOG_ERR("offset=0x%x; len=0x%x not sector align.\n", (u32_t)offset, (u32_t)len);
  67. return -1;
  68. }
  69. struct spinand_info *sni = &spinand_acts_data;
  70. int ret = 0;
  71. offset >>= 9;
  72. len >>= 9;
  73. #ifdef CONFIG_PM_DEVICE
  74. if (spinand_resume) {
  75. ret = spinand_resume_init(sni);
  76. if (ret != 0) {
  77. LOG_ERR("spinand resume err, spinand read err!\n");
  78. return ret;
  79. }
  80. }
  81. #endif
  82. if (!spinand_initial) {
  83. LOG_ERR("%s spinand init failed, please check...\n", __func__);
  84. return -1;
  85. }
  86. //printk("read offset = %d; len = %d;\n", offset, len);
  87. if ((offset + len) > spinand_max_sectors) {
  88. LOG_ERR("%s error! read from 0x%x len 0x%x excceed storage capacity 0x%x.\n", __func__, offset, len, spinand_max_sectors);
  89. return -1;
  90. }
  91. k_mutex_lock(&mutex, K_FOREVER);
  92. #ifndef CONFIG_SPINAND_LIB
  93. ret = p_spinand_api->read(sni, offset, data, len);
  94. #else
  95. ret = spinand_read(sni, offset, data, len);
  96. #endif
  97. k_mutex_unlock(&mutex);
  98. return ret;
  99. }
  100. static int spinand_acts_write(const struct device *dev, off_t offset, const void *data, size_t len)
  101. {
  102. if (((offset % 512) != 0) || ((len % 512 != 0))) {
  103. LOG_ERR("offset=0x%x; len=0x%x not sector align.\n", (u32_t)offset, (u32_t)len);
  104. return -1;
  105. }
  106. struct spinand_info *sni = &spinand_acts_data;
  107. int ret = 0;
  108. offset >>= 9;
  109. len >>= 9;
  110. #ifdef CONFIG_PM_DEVICE
  111. if (spinand_resume) {
  112. ret = spinand_resume_init(sni);
  113. if (ret != 0) {
  114. LOG_ERR("spinand resume err, spinand write err!\n");
  115. return ret;
  116. }
  117. }
  118. #endif
  119. if (!spinand_initial) {
  120. LOG_ERR("%s spinand init failed, please check...\n", __func__);
  121. return -1;
  122. }
  123. //printk("write offset = %d; len = %d;\n", offset, len);
  124. if ((offset + len) > spinand_max_sectors) {
  125. LOG_ERR("%s error! write from 0x%x len 0x%x excceed storage capacity 0x%x.\n", __func__, offset, len, spinand_max_sectors);
  126. return -1;
  127. }
  128. k_mutex_lock(&mutex, K_FOREVER);
  129. #ifndef CONFIG_SPINAND_LIB
  130. ret = p_spinand_api->write(sni, offset, data, len);
  131. #else
  132. ret = spinand_write(sni, offset, data, len);
  133. #endif
  134. k_mutex_unlock(&mutex);
  135. return ret;
  136. }
  137. static int spinand_acts_erase(const struct device *dev, off_t offset, size_t size)
  138. {
  139. if (((offset % 512) != 0) || ((size % 512 != 0))) {
  140. LOG_ERR("offset=0x%x; len=0x%x not sector align.\n", (u32_t)offset, (u32_t)size);
  141. return -1;
  142. }
  143. struct spinand_info *sni = &spinand_acts_data;
  144. int ret = 0;
  145. offset >>= 9;
  146. size >>= 9;
  147. #ifdef CONFIG_PM_DEVICE
  148. if (spinand_resume) {
  149. ret = spinand_resume_init(sni);
  150. if (ret != 0) {
  151. LOG_ERR("spinand resume err, spinand erase err!\n");
  152. return ret;
  153. }
  154. }
  155. #endif
  156. if (!spinand_initial) {
  157. LOG_ERR("%s spinand init failed, please check...\n", __func__);
  158. return -1;
  159. }
  160. printk("erase offset = %d; len = %d;\n", offset, size);
  161. k_mutex_lock(&mutex, K_FOREVER);
  162. #ifndef CONFIG_SPINAND_LIB
  163. ret = p_spinand_api->erase(sni, offset, size);
  164. #else
  165. ret = spinand_erase(sni, offset, size);
  166. #endif
  167. k_mutex_unlock(&mutex);
  168. return ret;
  169. }
  170. static int spinand_acts_flush(const struct device *dev, bool efficient)
  171. {
  172. //offset, len shuold align with 512B.
  173. struct spinand_info *sni = &spinand_acts_data;
  174. int ret = 0;
  175. #ifdef CONFIG_PM_DEVICE
  176. if (spinand_resume) {
  177. ret = spinand_resume_init(sni);
  178. if (ret != 0) {
  179. LOG_ERR("spinand resume err, spinand flush err!\n");
  180. return ret;
  181. }
  182. }
  183. #endif
  184. if (!spinand_initial) {
  185. LOG_ERR("%s spinand init failed, please check...\n", __func__);
  186. return -1;
  187. }
  188. k_mutex_lock(&mutex, K_FOREVER);
  189. #ifndef CONFIG_SPINAND_LIB
  190. ret = p_spinand_api->flush(sni);
  191. #else
  192. ret = spinand_flush(sni, efficient);
  193. #endif
  194. k_mutex_unlock(&mutex);
  195. return ret;
  196. }
  197. int get_storage_params(struct spinand_info *sni, u8_t *id, struct FlashChipInfo **ChipInfo)
  198. {
  199. int i, j;
  200. struct NandIdTblHeader *id_tbl_header = (struct NandIdTblHeader *)sni->id_tbl;
  201. struct FlashChipInfo *id_tbl = (struct FlashChipInfo *)((uint8_t *)sni->id_tbl + sizeof(struct NandIdTblHeader));
  202. if (id_tbl_header->magic != ID_TBL_MAGIC)
  203. {
  204. LOG_ERR("id tbl magic err! 0x%x \n", id_tbl_header->magic);
  205. return -1;
  206. }
  207. for (i = 0; i < id_tbl_header->num; i++)
  208. {
  209. for (j = 0; j < NAND_CHIPID_LENGTH / 2; j++)
  210. {
  211. /* skip compare the 0xff value */
  212. if ((id_tbl[i].ChipID[j] != 0xff) && (id_tbl[i].ChipID[j] != id[j]))
  213. {
  214. //LOG_DBG("id not match; id_tbl[%d].ChipID[%d] = 0x%x; id[%d] = 0x%x\n", i, j, id_tbl[i].ChipID[j], j, id[j]);
  215. break;
  216. }
  217. //LOG_DBG("id match; id_tbl[%d].ChipID[%d] = 0x%x; id[%d] = 0x%x\n", i, j, id_tbl[i].ChipID[j], j, id[j]);
  218. }
  219. if (j == NAND_CHIPID_LENGTH / 2)
  220. {
  221. *ChipInfo = &id_tbl[i];
  222. //LOG_DBG("get chipinfo.\n");
  223. return 0;
  224. }
  225. }
  226. LOG_ERR("spinand id not match, please check!\n");
  227. return -1;
  228. }
  229. int spinand_get_chipid(struct spinand_info *sni, u32_t *chipid)
  230. {
  231. int i = 0;
  232. struct FlashChipInfo *NandFlashInfo;
  233. retry:
  234. #ifndef CONFIG_SPINAND_LIB
  235. *chipid = p_spinand_api->read_chipid(sni);
  236. #else
  237. *chipid = spinand_read_chipid(sni);
  238. #endif
  239. //LOG_INF("nand id = 0x%x\n", *chipid);
  240. if (*chipid == 0x0 || *chipid == 0xffffffff) {
  241. if (i++ < 3) {
  242. LOG_ERR("Can't get spinand id, retry %d...\n", i);
  243. goto retry;
  244. } else {
  245. LOG_ERR("Can't get spinand id, Please check!\n");
  246. return -1;
  247. }
  248. }
  249. if (get_storage_params(sni, (u8_t *)chipid, &NandFlashInfo) != 0) {
  250. LOG_ERR("Get chipid = 0x%x; But Can't get this chipid in idtbl.\n", *chipid);
  251. return -1;
  252. }
  253. return 0;
  254. }
  255. int spinand_get_delaychain(struct spinand_info *sni)
  256. {
  257. uint32_t chipid = 0;
  258. struct FlashChipInfo *NandFlashInfo;
  259. uint8_t t_dc = 0;
  260. int ret = 0;
  261. t_dc = sni->spi->delay_chain;
  262. sni->spi->delay_chain = TRY_DELAYCHAIN;
  263. ret = spinand_get_chipid(sni, &chipid);
  264. sni->spi->delay_chain = t_dc;
  265. if (ret != 0) {
  266. LOG_ERR("spinand get chipid err!\n");
  267. return -EINVAL;
  268. }
  269. if (get_storage_params(sni, (u8_t *)&chipid, &NandFlashInfo) != 0) {
  270. LOG_ERR("Can't get flashinfo.\n");
  271. return -1;
  272. }
  273. LOG_INF("spinand chipid: 0x%x; chipname: %s \n", chipid, NandFlashInfo->FlashMark);
  274. return NandFlashInfo->delayChain;
  275. }
  276. uint32_t spinand_get_storage_capacity(struct spinand_info *sni)
  277. {
  278. uint32_t chipid = 0;
  279. uint32_t max_sectors = 0;
  280. uint32_t zone_num = 0;
  281. struct FlashChipInfo *NandFlashInfo;
  282. if (spinand_get_chipid(sni, &chipid) != 0) {
  283. LOG_ERR("spinand get chipid err!\n");
  284. return 0;
  285. }
  286. if (get_storage_params(sni, (u8_t *)&chipid, &NandFlashInfo) != 0) {
  287. LOG_ERR("Can't get flashinfo.\n");
  288. return 0;
  289. }
  290. zone_num = NandFlashInfo->TotalBlkNumPerDie / NandFlashInfo->DefaultLBlkNumPer1024Blk;
  291. max_sectors = zone_num * NandFlashInfo->DefaultLBlkNumPer1024Blk * NandFlashInfo->SectorNumPerPage * NandFlashInfo->PageNumPerPhyBlk;
  292. return max_sectors;
  293. }
  294. int spinand_storage_ioctl(const struct device *dev, uint8_t cmd, void *buff)
  295. {
  296. struct spinand_info *sni = &spinand_acts_data;
  297. uint32_t chipid = 0;
  298. #ifdef CONFIG_PM_DEVICE
  299. int ret;
  300. if (spinand_resume) {
  301. ret = spinand_resume_init(sni);
  302. if (ret != 0) {
  303. LOG_ERR("spinand resume err, spinand ioctl err!\n");
  304. return ret;
  305. }
  306. }
  307. #endif
  308. if (!spinand_initial) {
  309. LOG_ERR("%s spinand init failed, please check...\n", __func__);
  310. return -1;
  311. }
  312. switch (cmd) {
  313. case DISK_IOCTL_CTRL_SYNC:
  314. spinand_acts_flush(dev, 1);
  315. break;
  316. case DISK_IOCTL_GET_SECTOR_COUNT:
  317. if (spinand_max_sectors == 0) {
  318. LOG_ERR("Can't get spinand storage capacity.\n");
  319. k_mutex_unlock(&mutex);
  320. return -1;
  321. }
  322. *(uint32_t *)buff = spinand_max_sectors;
  323. break;
  324. case DISK_IOCTL_GET_SECTOR_SIZE:
  325. *(uint32_t *)buff = SECTOR_SIZE;
  326. break;
  327. case DISK_IOCTL_GET_ERASE_BLOCK_SZ:
  328. *(uint32_t *)buff = SECTOR_SIZE;
  329. break;
  330. case DISK_IOCTL_HW_DETECT:
  331. if (spinand_get_chipid(sni, &chipid) != 0) {
  332. *(uint8_t *)buff = STA_NODISK;
  333. } else {
  334. *(uint8_t *)buff = STA_DISK_OK;
  335. }
  336. break;
  337. default:
  338. return -EINVAL;
  339. }
  340. return 0;
  341. }
  342. static int spinand_env_init(struct spinand_info *sni)
  343. {
  344. uint8_t feture;
  345. uint32_t chipid = 0;
  346. int delay_chain = 0;
  347. uint8_t max_delaychain;
  348. /* enable spi controller clock */
  349. acts_clock_peripheral_enable(CLOCK_ID_SPI0+CONFIG_SPINAND_USE_SPICONTROLER);
  350. /* reset spi controller */
  351. acts_reset_peripheral(RESET_ID_SPI0+CONFIG_SPINAND_USE_SPICONTROLER);
  352. set_spinand_spimfp();
  353. //LOG_INF("GOIO%d = 0x%x\n", CONFIG_SPINAND_POWER_GPIO, sys_read32(SPINAND_POWER_GPIO));
  354. /* setup SPI clock rate to 32MHz, use a lower clk to try chipid and capacity.*/
  355. clk_set_rate(CLOCK_ID_SPI0+CONFIG_SPINAND_USE_SPICONTROLER, MHZ(32));
  356. if (sni->spi->delay_chain == 0) {
  357. delay_chain = spinand_get_delaychain(sni);
  358. if (CONFIG_SPINAND_USE_SPICONTROLER == 0)
  359. max_delaychain = 63;
  360. else
  361. max_delaychain = 31;
  362. if (delay_chain < 0 || delay_chain > max_delaychain) {
  363. LOG_ERR("spinand get delaychain failed!\n");
  364. return -1;
  365. }
  366. sni->spi->delay_chain = delay_chain;
  367. LOG_INF("spinand set delaychain %d.\n", sni->spi->delay_chain);
  368. } else {
  369. LOG_INF("spinand set delaychain %d.\n", sni->spi->delay_chain);
  370. }
  371. if (spinand_get_chipid(sni, &chipid) != 0) {
  372. return -1;
  373. }
  374. spinand_max_sectors = spinand_get_storage_capacity(sni);
  375. if (spinand_max_sectors == 0) {
  376. LOG_ERR("spinand get storage capacity failed!\n");
  377. return -1;
  378. }
  379. LOG_INF("spinand contain sectors 0x%x.\n", spinand_max_sectors);
  380. /* setup SPI clock rate to CONFIG_SPINAND_FLASH_FREQ_MHZ*/
  381. clk_set_rate(CLOCK_ID_SPI0+CONFIG_SPINAND_USE_SPICONTROLER, MHZ(CONFIG_SPINAND_FLASH_FREQ_MHZ));
  382. //if use 4xIO, SIO2 & SIO3 do not need pull up, otherwise, SIO2 & SIO3 need setting pull up.
  383. if (sni->spi->bus_width == 4) {
  384. #ifndef CONFIG_SPINAND_LIB
  385. feture = p_spinand_api->spinand_get_feature(sni, 0xB0);
  386. p_spinand_api->spinand_set_feature(sni, 0xB0, feture | 0x1);
  387. #else
  388. feture = spinand_get_feature(sni, 0xB0);
  389. spinand_set_feature(sni, 0xB0, feture | 0x1);
  390. #endif
  391. } else {
  392. LOG_INF("spinand use 1xIO.\n");
  393. }
  394. //Compatible for HYF1GQ4UT.
  395. if (chipid == 0x15011501) {
  396. #ifdef SPINAND_ROM
  397. p_spinand_api->spinand_set_feature(sni, 0xA0, 0x2);
  398. #else
  399. spinand_set_feature(sni, 0xA0, 0x2);
  400. #endif
  401. }
  402. //For debug only.
  403. if (0) {
  404. LOG_DBG("MRCR0 = 0x%x \n", sys_read32(RMU_MRCR0));
  405. //bit7 for spi3
  406. LOG_DBG("CMU_DEVCKEN0 = 0x%x \n", sys_read32(CMU_DEVCLKEN0));
  407. LOG_DBG("CORE_PLL = 0x%x \n", sys_read32(COREPLL_CTL));
  408. LOG_DBG("SPI3CLK = 0x%x \n", sys_read32(CMU_SPI3CLK));
  409. LOG_DBG("GOIO64 = 0x%x \n", sys_read32(0x40068100));
  410. struct board_pinmux_info pinmux_info;
  411. board_get_spinand_pinmux_info(&pinmux_info);
  412. int i;
  413. LOG_DBG("spinand pinctrl list:\n");
  414. for (i = 0; i < pinmux_info.pins_num; i++) {
  415. LOG_DBG("GPIO%d = 0x%x\n", pinmux_info.pins_config[i].pin_num, pinmux_info.pins_config[i].mode);
  416. }
  417. }
  418. return 0;
  419. }
  420. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  421. __dvfs_notifier_func static void spinand_dvfs_notify(void *user_data, struct dvfs_freqs *dvfs_freq)
  422. {
  423. struct dvfs_level *old_dvfs_level, *new_dvfs_level;
  424. if (!dvfs_freq) {
  425. LOG_ERR("dvfs notify invalid param");
  426. return ;
  427. }
  428. if (dvfs_freq->old_level == dvfs_freq->new_level)
  429. return;
  430. k_mutex_lock(&mutex, K_FOREVER);
  431. old_dvfs_level = dvfs_get_info_by_level_id(dvfs_freq->old_level);
  432. new_dvfs_level = dvfs_get_info_by_level_id(dvfs_freq->new_level);
  433. if (dvfs_freq->state == DVFS_EVENT_PRE_CHANGE) {
  434. if (new_dvfs_level->vdd_volt >= 1100)
  435. clk_set_rate(CLOCK_ID_SPI0+CONFIG_SPINAND_USE_SPICONTROLER, MHZ(CONFIG_SPINAND_FLASH_FREQ_MHZ));
  436. else
  437. clk_set_rate(CLOCK_ID_SPI0+CONFIG_SPINAND_USE_SPICONTROLER, MHZ(64));
  438. LOG_INF("spi%dclk update by vdd:%d => %d\n",
  439. CONFIG_SPINAND_USE_SPICONTROLER, old_dvfs_level->vdd_volt, new_dvfs_level->vdd_volt);
  440. }
  441. k_mutex_unlock(&mutex);
  442. }
  443. static struct dvfs_notifier __dvfs_notifier_data spinand_dvfs_notifier = {
  444. .dvfs_notify_func_t = spinand_dvfs_notify,
  445. .user_data = NULL,
  446. };
  447. #endif
  448. void set_spinand_gpiohighz()
  449. {
  450. struct board_pinmux_info pinmux_info;
  451. board_get_spinand_gpiohighz_info(&pinmux_info);
  452. acts_pinmux_setup_pins(pinmux_info.pins_config, pinmux_info.pins_num);
  453. }
  454. void set_spinand_spimfp()
  455. {
  456. struct board_pinmux_info pinmux_info;
  457. board_get_spinand_pinmux_info(&pinmux_info);
  458. acts_pinmux_setup_pins(pinmux_info.pins_config, pinmux_info.pins_num);
  459. // wait for power Stable
  460. k_busy_wait(4*1000);
  461. }
  462. static int spinand_acts_init(const struct device *dev)
  463. {
  464. int ret = 0;
  465. //const struct spinand_acts_config *config = DEV_CFG(dev);
  466. struct spinand_info *sni = &spinand_acts_data;
  467. sni->bss = api_bss;
  468. memset(sni->bss, 0x0, HEAP_SIZE);
  469. sni->id_tbl = (void *)soc_boot_get_nandid_tbl_addr();
  470. sni->spi = &system_spinand;
  471. spinand_initial = false;
  472. #ifdef CONFIG_PM_DEVICE
  473. spinand_resume = false;
  474. #endif
  475. set_spinand_gpiohighz();
  476. if (spinand_env_init(sni) != 0) {
  477. LOG_ERR("spinand env init err.\n");
  478. return -1;
  479. }
  480. #ifndef CONFIG_SPINAND_LIB
  481. ret = p_spinand_api->init(sni);
  482. #else
  483. LOG_INF("spinand version %s \n", spinand_get_version());
  484. ret = spinand_init(sni);
  485. #endif
  486. if (ret != 0) {
  487. LOG_ERR("SPINand rom driver init err.\n");
  488. return -1;
  489. }
  490. k_mutex_init(&mutex);
  491. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  492. dvfs_register_notifier(&spinand_dvfs_notifier);
  493. #endif
  494. spinand_initial = true;
  495. return 0;
  496. }
  497. #ifdef CONFIG_PM_DEVICE
  498. static u32_t bss_checksum;
  499. #define CHECKSUM_XOR_VALUE 0xaa55
  500. u32_t spinand_checksum(u32_t *buf, u32_t len)
  501. {
  502. u32_t i;
  503. u32_t sum = 0;
  504. for (i = 0; i < len; i++)
  505. {
  506. sum += buf[i];
  507. }
  508. sum ^= (uint16_t)CHECKSUM_XOR_VALUE;
  509. return sum;
  510. }
  511. int spinand_resume_init(struct spinand_info *sni)
  512. {
  513. int ret = 0;
  514. k_mutex_lock(&mutex, K_FOREVER);
  515. if (spinand_env_init(sni) != 0) {
  516. LOG_ERR("spinand env init err.\n");
  517. k_mutex_unlock(&mutex);
  518. return -1;
  519. }
  520. #ifndef CONFIG_SPINAND_LIB
  521. ret = p_spinand_api->init(sni);
  522. #else
  523. ret = spinand_pdl_init(sni);
  524. #endif
  525. if (ret != 0) {
  526. LOG_ERR("SPINand rom driver init err.\n");
  527. k_mutex_unlock(&mutex);
  528. return -1;
  529. }
  530. if (spinand_resume)
  531. spinand_resume = false;
  532. spinand_initial = true;
  533. k_mutex_unlock(&mutex);
  534. return ret;
  535. }
  536. int spinand_pm_control(const struct device *device, enum pm_device_action action)
  537. {
  538. int ret;
  539. u32_t tmp_cksum;
  540. //struct spinand_info *sni = &spinand_acts_data;
  541. switch (action) {
  542. case PM_DEVICE_ACTION_RESUME:
  543. LOG_INF("spinand resume ...\n");
  544. tmp_cksum = spinand_checksum(api_bss, sizeof(api_bss)/4);
  545. if (bss_checksum != tmp_cksum) {
  546. LOG_ERR("SPINand resume err! api_bss is changed! suspend_checksum = 0x%x; resume_checksum = 0x%x \n", bss_checksum, tmp_cksum);
  547. return -1;
  548. }
  549. //LOG_INF("resume_checksum = 0x%x; sizeof(api_bss) = 0x%x \n", tmp_cksum, sizeof(api_bss));
  550. k_mutex_lock(&mutex, K_FOREVER);
  551. spinand_resume = true;
  552. k_mutex_unlock(&mutex);
  553. break;
  554. case PM_DEVICE_ACTION_SUSPEND:
  555. LOG_INF("spinand suspend ...\n");
  556. k_mutex_lock(&mutex, K_FOREVER);
  557. set_spinand_gpiohighz();
  558. spinand_initial = false;
  559. k_mutex_unlock(&mutex);
  560. bss_checksum = spinand_checksum(api_bss, sizeof(api_bss)/4);
  561. //LOG_INF("suspend_checksum = 0x%x; sizeof(api_bss) = 0x%x \n", bss_checksum, sizeof(api_bss));
  562. break;
  563. case PM_DEVICE_ACTION_EARLY_SUSPEND:
  564. break;
  565. case PM_DEVICE_ACTION_LATE_RESUME:
  566. break;
  567. case PM_DEVICE_ACTION_TURN_OFF:
  568. //flush all data to spinand.
  569. spinand_acts_flush(device, 0);
  570. break;
  571. default:
  572. ret = -EINVAL;
  573. }
  574. return 0;
  575. }
  576. #else
  577. #define adc_pm_control NULL
  578. #endif
  579. static struct flash_driver_api spinand_api = {
  580. .read = spinand_acts_read,
  581. .write = spinand_acts_write,
  582. .erase = spinand_acts_erase,
  583. .write_protection = NULL,
  584. #ifdef CONFIG_SPINAND_LIB
  585. .flush = spinand_acts_flush,
  586. #endif
  587. };
  588. #ifdef CONFIG_BOARD_NANDBOOT
  589. #define SPINAND_ACTS_DEVICE_INIT(n) \
  590. DEVICE_DEFINE(spinand, CONFIG_SPINAND_FLASH_NAME, \
  591. &spinand_acts_init, spinand_pm_control, \
  592. &spinand_acts_data, NULL, PRE_KERNEL_2, \
  593. CONFIG_KERNEL_INIT_PRIORITY_OBJECTS, &spinand_api);
  594. #else
  595. #define SPINAND_ACTS_DEVICE_INIT(n) \
  596. DEVICE_DEFINE(spinand, CONFIG_SPINAND_FLASH_NAME, \
  597. &spinand_acts_init, spinand_pm_control, \
  598. &spinand_acts_data, NULL, POST_KERNEL, \
  599. CONFIG_KERNEL_INIT_PRIORITY_OBJECTS, &spinand_api);
  600. #endif
  601. #if IS_ENABLED(CONFIG_SPINAND_3) || IS_ENABLED(CONFIG_SPINAND_0)
  602. SPINAND_ACTS_DEVICE_INIT(3)
  603. #endif