spr_emi.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * (C) Copyright 2009
  3. * Ryan CHEN, ST Micoelectronics, ryan.chen@st.com
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #ifndef __SPEAR_EMI_H__
  24. #define __SPEAR_EMI_H__
  25. #ifdef CONFIG_SPEAR_EMI
  26. struct emi_bank_regs {
  27. u32 tap;
  28. u32 tsdp;
  29. u32 tdpw;
  30. u32 tdpr;
  31. u32 tdcs;
  32. u32 control;
  33. };
  34. struct emi_regs {
  35. struct emi_bank_regs bank_regs[CONFIG_SYS_MAX_FLASH_BANKS];
  36. u32 tout;
  37. u32 ack;
  38. u32 irq;
  39. };
  40. #define EMI_ACKMSK 0x40
  41. /* control register definitions */
  42. #define EMI_CNTL_ENBBYTEW (1 << 2)
  43. #define EMI_CNTL_ENBBYTER (1 << 3)
  44. #define EMI_CNTL_ENBBYTERW (EMI_CNTL_ENBBYTER | EMI_CNTL_ENBBYTEW)
  45. #endif
  46. #endif