microblaze-generic.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * (C) Copyright 2007 Michal Simek
  3. *
  4. * Michal SIMEK <monstr@monstr.eu>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. /* This is a board specific file. It's OK to include board specific
  25. * header files */
  26. #include <common.h>
  27. #include <config.h>
  28. #include <asm/microblaze_intc.h>
  29. #include <asm/asm.h>
  30. void do_reset (void)
  31. {
  32. #ifdef CONFIG_SYS_GPIO_0
  33. *((unsigned long *)(CONFIG_SYS_GPIO_0_ADDR)) =
  34. ++(*((unsigned long *)(CONFIG_SYS_GPIO_0_ADDR)));
  35. #endif
  36. #ifdef CONFIG_SYS_RESET_ADDRESS
  37. puts ("Reseting board\n");
  38. asm ("bra r0");
  39. #endif
  40. }
  41. int gpio_init (void)
  42. {
  43. #ifdef CONFIG_SYS_GPIO_0
  44. *((unsigned long *)(CONFIG_SYS_GPIO_0_ADDR)) = 0xFFFFFFFF;
  45. #endif
  46. return 0;
  47. }
  48. #ifdef CONFIG_SYS_FSL_2
  49. void fsl_isr2 (void *arg) {
  50. volatile int num;
  51. *((unsigned int *)(CONFIG_SYS_GPIO_0_ADDR + 0x4)) =
  52. ++(*((unsigned int *)(CONFIG_SYS_GPIO_0_ADDR + 0x4)));
  53. GET (num, 2);
  54. NGET (num, 2);
  55. puts("*");
  56. }
  57. int fsl_init2 (void) {
  58. puts("fsl_init2\n");
  59. install_interrupt_handler (FSL_INTR_2, fsl_isr2, NULL);
  60. return 0;
  61. }
  62. #endif