You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

76 lines
2.6 KiB

  1. /***************************************************************************
  2. * Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net> *
  3. * *
  4. * This program is free software; you can redistribute it and/or modify *
  5. * it under the terms of the GNU General Public License as published by *
  6. * the Free Software Foundation; either version 2 of the License, or *
  7. * (at your option) any later version. *
  8. * *
  9. * This program is distributed in the hope that it will be useful, *
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  12. * GNU General Public License for more details. *
  13. * *
  14. * You should have received a copy of the GNU General Public License *
  15. * along with this program; if not, write to the *
  16. * Free Software Foundation, Inc., *
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
  18. ***************************************************************************/
  19. #ifdef HAVE_CONFIG_H
  20. #include "config.h"
  21. #endif
  22. #include "imp.h"
  23. #include "hello.h"
  24. static int nonce_nand_command(struct nand_device *nand, uint8_t command)
  25. {
  26. return ERROR_OK;
  27. }
  28. static int nonce_nand_address(struct nand_device *nand, uint8_t address)
  29. {
  30. return ERROR_OK;
  31. }
  32. static int nonce_nand_read(struct nand_device *nand, void *data)
  33. {
  34. return ERROR_OK;
  35. }
  36. static int nonce_nand_write(struct nand_device *nand, uint16_t data)
  37. {
  38. return ERROR_OK;
  39. }
  40. static int nonce_nand_fast_block_write(struct nand_device *nand,
  41. uint8_t *data, int size)
  42. {
  43. return ERROR_OK;
  44. }
  45. static int nonce_nand_reset(struct nand_device *nand)
  46. {
  47. return nonce_nand_command(nand, NAND_CMD_RESET);
  48. }
  49. NAND_DEVICE_COMMAND_HANDLER(nonce_nand_device_command)
  50. {
  51. return ERROR_OK;
  52. }
  53. static int nonce_nand_init(struct nand_device *nand)
  54. {
  55. return ERROR_OK;
  56. }
  57. struct nand_flash_controller nonce_nand_controller = {
  58. .name = "nonce",
  59. .commands = hello_command_handlers,
  60. .nand_device_command = &nonce_nand_device_command,
  61. .init = &nonce_nand_init,
  62. .reset = &nonce_nand_reset,
  63. .command = &nonce_nand_command,
  64. .address = &nonce_nand_address,
  65. .read_data = &nonce_nand_read,
  66. .write_data = &nonce_nand_write,
  67. .write_block_data = &nonce_nand_fast_block_write,
  68. };