swarm.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2000, 2001 Broadcom Corporation
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #ifndef __ASM_SIBYTE_SWARM_H
  19. #define __ASM_SIBYTE_SWARM_H
  20. #include <asm/sibyte/sb1250.h>
  21. #include <asm/sibyte/sb1250_int.h>
  22. #define KERNEL_RESERVED_MEM 0x100000
  23. #define LEDS_CS         3
  24. #ifdef CONFIG_SIBYTE_SWARM
  25. /* Generic bus chip selects */
  26. #define IDE_CS          4
  27. #define PCMCIA_CS       6
  28. /* GPIOs */
  29. #define K_GPIO_GB_IDE   4
  30. #define K_INT_GB_IDE    (K_INT_GPIO_0 + K_GPIO_GB_IDE)
  31. #define K_GPIO_PC_READY 9
  32. #define K_INT_PC_READY  (K_INT_GPIO_0 + K_GPIO_PC_READY)
  33. #endif
  34. #ifdef __ASSEMBLY__
  35. #define setleds(t0,t1,c0,c1,c2,c3) 
  36. li t0, (LED_BASE_ADDR|0xa0000000); 
  37. li t1, c0; 
  38. sb t1, 0x18(t0); 
  39. li t1, c1; 
  40. sb t1, 0x10(t0); 
  41. li t1, c2; 
  42. sb t1, 0x08(t0); 
  43. li t1, c3; 
  44. sb t1, 0x00(t0)
  45. #else
  46. void swarm_setup(void);
  47. void setleds(char *str);
  48. #define AT_spin 
  49. __asm__ __volatile__ (
  50. ".set noatn"
  51. "li $at, 0n"
  52. "1: beqz $at, 1bn"
  53. ".set atn"
  54. )
  55. #endif
  56. #endif /* __ASM_SIBYTE_SWARM_H */