gpio_cfi_flash.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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/io.h>
  11. #include "gpio_cfi_flash.h"
  12. #define GPIO_PIN_1 PF4
  13. #define GPIO_MASK_1 (1 << 21)
  14. #define GPIO_MASK (GPIO_MASK_1)
  15. void *gpio_cfi_flash_swizzle(void *vaddr)
  16. {
  17. unsigned long addr = (unsigned long)vaddr;
  18. if (addr & GPIO_MASK_1)
  19. bfin_write_PORTFIO_SET(GPIO_PIN_1);
  20. else
  21. bfin_write_PORTFIO_CLEAR(GPIO_PIN_1);
  22. #ifdef GPIO_MASK_2
  23. if (addr & GPIO_MASK_2)
  24. bfin_write_PORTGIO_SET(GPIO_PIN_2);
  25. else
  26. bfin_write_PORTGIO_CLEAR(GPIO_PIN_2);
  27. #endif
  28. SSYNC();
  29. return (void *)(addr & ~GPIO_MASK);
  30. }
  31. #define __raw_writeq(value, addr) *(volatile u64 *)addr = value
  32. #define __raw_readq(addr) *(volatile u64 *)addr
  33. #define MAKE_FLASH(size, sfx) \
  34. void flash_write##size(u##size value, void *addr) \
  35. { \
  36. __raw_write##sfx(value, gpio_cfi_flash_swizzle(addr)); \
  37. } \
  38. u##size flash_read##size(void *addr) \
  39. { \
  40. return __raw_read##sfx(gpio_cfi_flash_swizzle(addr)); \
  41. }
  42. MAKE_FLASH(8, b) /* flash_write8() flash_read8() */
  43. MAKE_FLASH(16, w) /* flash_write16() flash_write16() */
  44. MAKE_FLASH(32, l) /* flash_write32() flash_write32() */
  45. MAKE_FLASH(64, q) /* flash_write64() flash_write64() */
  46. void gpio_cfi_flash_init(void)
  47. {
  48. bfin_write_PORTFIO_DIR(bfin_read_PORTFIO_DIR() | GPIO_PIN_1);
  49. gpio_cfi_flash_swizzle((void *)CONFIG_SYS_FLASH_BASE);
  50. }