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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2000, 2001 Broadcom Corporation
  3.  * Copyright (C) 2002 Ralf Baechle
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version 2
  8.  * of the License, or (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18.  */
  19. #ifndef __ASM_SIBYTE_64BIT_H
  20. #define __ASM_SIBYTE_64BIT_H
  21. #include <linux/config.h>
  22. #include <linux/types.h>
  23. #ifdef CONFIG_MIPS32
  24. #include <asm/system.h>
  25. /*
  26.  * This is annoying...we can't actually write the 64-bit IO register properly
  27.  * without having access to 64-bit registers...  which doesn't work by default
  28.  * in o32 format...grrr...
  29.  */
  30. static inline void out64(u64 val, unsigned long addr)
  31. {
  32. u32 low, high;
  33. unsigned long flags;
  34. high = val >> 32;
  35. low = val & 0xffffffff;
  36. // save_flags(flags);
  37. __save_and_cli(flags);
  38. __asm__ __volatile__ (
  39. ".set pushn"
  40. ".set noreordern"
  41. ".set noatn"
  42. ".set mips4n"
  43. "   dsll32 $2, %1, 0   n"
  44. "   dsll32 $1, %0, 0   n"
  45. "   dsrl32 $2, $2, 0   n"
  46. "   or     $1, $1, $2  n"
  47. "   sd $1, (%2)n"
  48. ".set popn"
  49. ::"r" (high), "r" (low), "r" (addr)
  50. :"$1", "$2");
  51. __restore_flags(flags);
  52. }
  53. static inline u64 in64(unsigned long addr)
  54. {
  55. u32 low, high;
  56. unsigned long flags;
  57. __save_and_cli(flags);
  58. __asm__ __volatile__ (
  59. ".set pushn"
  60. ".set noreordern"
  61. ".set noat     n"
  62. ".set mips4    n"
  63. "  ld     %1, (%2)n"
  64. "  dsra32 %0, %1, 0n"
  65. "  sll    %1, %1, 0n"
  66. ".set popn"
  67. :"=r" (high), "=r" (low): "r" (addr));
  68. __restore_flags(flags);
  69. return (((u64)high) << 32) | low;
  70. }
  71. #endif /* CONFIG_MIPS32 */
  72. #ifdef CONFIG_MIPS64
  73. /*
  74.  * These are provided so as to be able to use common
  75.  * driver code for the 32-bit and 64-bit trees
  76.  */
  77. extern inline void out64(u64 val, unsigned long addr)
  78. {
  79. *(volatile unsigned long *)addr = val;
  80. }
  81. extern inline u64 in64(unsigned long addr)
  82. {
  83. return *(volatile unsigned long *)addr;
  84. }
  85. #endif /* CONFIG_MIPS64 */
  86. /*
  87.  * Avoid interrupt mucking, just adjust the address for 4-byte access.
  88.  * Assume the addresses are 8-byte aligned.
  89.  */
  90. #ifdef __MIPSEB__
  91. #define __CSR_32_ADJUST 4
  92. #else
  93. #define __CSR_32_ADJUST 0
  94. #endif
  95. #define csr_out32(v,a) (*(u32 *)((unsigned long)(a) + __CSR_32_ADJUST) = (v))
  96. #define csr_in32(a)    (*(u32 *)((unsigned long)(a) + __CSR_32_ADJUST))
  97. #endif /* __ASM_SIBYTE_64BIT_H */