gpio_cfi_flash.c 1.5 KB

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