mem.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * (C) Copyright 2010
  3. * Texas Instruments, <www.ti.com>
  4. *
  5. * Steve Sakoman <steve@sakoman.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <asm/arch/cpu.h>
  23. #include <asm/arch/sys_proto.h>
  24. struct gpmc *gpmc_cfg;
  25. /*****************************************************
  26. * gpmc_init(): init gpmc bus
  27. * This code can only be executed from SRAM or SDRAM.
  28. *****************************************************/
  29. void gpmc_init(void)
  30. {
  31. gpmc_cfg = (struct gpmc *)GPMC_BASE;
  32. /* global settings */
  33. writel(0, &gpmc_cfg->irqenable); /* isr's sources masked */
  34. writel(0, &gpmc_cfg->timeout_control);/* timeout disable */
  35. /*
  36. * Disable the GPMC0 config set by ROM code
  37. * It conflicts with our MPDB (both at 0x08000000)
  38. */
  39. writel(0, &gpmc_cfg->cs[0].config7);
  40. }