gpio_cfi_flash.c 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * gpio_cfi_flash.c - GPIO-assisted Flash Chip Support
  3. *
  4. * Copyright (c) 2009 Analog Devices Inc.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #include <common.h>
  9. #include <asm/blackfin.h>
  10. #include <asm/gpio.h>
  11. #include <asm/io.h>
  12. #include "gpio_cfi_flash.h"
  13. #define GPIO_PIN_1 GPIO_PH0
  14. #define GPIO_MASK_1 (1 << 21)
  15. #define GPIO_MASK (GPIO_MASK_1)
  16. void *gpio_cfi_flash_swizzle(void *vaddr)
  17. {
  18. unsigned long addr = (unsigned long)vaddr;
  19. gpio_set_value(GPIO_PIN_1, addr & GPIO_MASK_1);
  20. #ifdef GPIO_MASK_2
  21. gpio_set_value(GPIO_PIN_2, addr & GPIO_MASK_2);
  22. #endif
  23. SSYNC();
  24. return (void *)(addr & ~GPIO_MASK);
  25. }
  26. #define __raw_writeq(value, addr) *(volatile u64 *)addr = value
  27. #define __raw_readq(addr) *(volatile u64 *)addr
  28. #define MAKE_FLASH(size, sfx) \
  29. void flash_write##size(u##size value, void *addr) \
  30. { \
  31. __raw_write##sfx(value, gpio_cfi_flash_swizzle(addr)); \
  32. } \
  33. u##size flash_read##size(void *addr) \
  34. { \
  35. return __raw_read##sfx(gpio_cfi_flash_swizzle(addr)); \
  36. }
  37. MAKE_FLASH(8, b) /* flash_write8() flash_read8() */
  38. MAKE_FLASH(16, w) /* flash_write16() flash_read16() */
  39. MAKE_FLASH(32, l) /* flash_write32() flash_read32() */
  40. MAKE_FLASH(64, q) /* flash_write64() flash_read64() */
  41. void gpio_cfi_flash_init(void)
  42. {
  43. gpio_request(GPIO_PIN_1, "gpio_cfi_flash");
  44. #ifdef GPIO_MASK_2
  45. gpio_request(GPIO_PIN_2, "gpio_cfi_flash");
  46. #endif
  47. gpio_cfi_flash_swizzle((void *)CONFIG_SYS_FLASH_BASE);
  48. }