bitops.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:29k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-s390/bitops.h
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
  7.  *
  8.  *  Derived from "include/asm-i386/bitops.h"
  9.  *    Copyright (C) 1992, Linus Torvalds
  10.  *
  11.  */
  12. #ifndef _S390_BITOPS_H
  13. #define _S390_BITOPS_H
  14. /*
  15.  * bit 0 is the LSB of *addr; bit 63 is the MSB of *addr;
  16.  * bit 64 is the LSB of *(addr+8). That combined with the
  17.  * big endian byte order on S390 give the following bit
  18.  * order in memory:
  19.  *    3f 3e 3d 3c 3b 3a 39 38 37 36 35 34 33 32 31 30
  20.  *    2f 2e 2d 2c 2b 2a 29 28 27 26 25 24 23 22 21 20
  21.  *    1f 1e 1d 1c 1b 1a 19 18 17 16 15 14 13 12 11 10
  22.  *    0f 0e 0d 0c 0b 0a 09 08 07 06 05 04 03 02 01 00
  23.  * after that follows the next long with bit numbers
  24.  *    7f 7e 7d 7c 7b 7a 79 78 77 76 75 74 73 72 71 70
  25.  *    6f 6e 6d 6c 6b 6a 69 68 67 66 65 64 63 62 61 60
  26.  *    5f 5e 5d 5c 5b 5a 59 58 57 56 55 54 53 52 51 50
  27.  *    4f 4e 4d 4c 4b 4a 49 48 47 46 45 44 43 42 41 40
  28.  * The reason for this bit ordering is the fact that
  29.  * in the architecture independent code bits operations
  30.  * of the form "flags |= (1 << bitnr)" are used INTERMIXED
  31.  * with operation of the form "set_bit(bitnr, flags)".
  32.  */
  33. #include <linux/config.h>
  34. /* set ALIGN_CS to 1 if the SMP safe bit operations should
  35.  * align the address to 4 byte boundary. It seems to work
  36.  * without the alignment. 
  37.  */
  38. #ifdef __KERNEL__
  39. #define ALIGN_CS 0
  40. #else
  41. #define ALIGN_CS 1
  42. #ifndef CONFIG_SMP
  43. #error "bitops won't work without CONFIG_SMP"
  44. #endif
  45. #endif
  46. /* bitmap tables from arch/S390/kernel/bitmap.S */
  47. extern const char _oi_bitmap[];
  48. extern const char _ni_bitmap[];
  49. extern const char _zb_findmap[];
  50. #ifdef CONFIG_SMP
  51. /*
  52.  * SMP save set_bit routine based on compare and swap (CS)
  53.  */
  54. static __inline__ void set_bit_cs(unsigned long nr, volatile void * addr)
  55. {
  56.         unsigned long bits, mask;
  57.         __asm__ __volatile__(
  58. #if ALIGN_CS == 1
  59.              "   lghi  %2,7n"         /* CS must be aligned on 4 byte b. */
  60.              "   ngr   %2,%1n"        /* isolate last 2 bits of address */
  61.              "   xgr   %1,%2n"        /* make addr % 4 == 0 */
  62.              "   sllg  %2,%2,3n"
  63.              "   agr   %0,%2n"        /* add alignement to bitnr */
  64. #endif
  65.              "   lghi  %2,63n"
  66.              "   nr    %2,%0n"        /* make shift value */
  67.              "   xr    %0,%2n"
  68.              "   srlg  %0,%0,3n"
  69.              "   lghi  %3,1n"
  70.              "   la    %1,0(%0,%1)n"  /* calc. address for CS */
  71.              "   sllg  %3,%3,0(%2)n"  /* make OR mask */
  72.              "   lg    %0,0(%1)n"
  73.              "0: lgr   %2,%0n"        /* CS loop starts here */
  74.              "   ogr   %2,%3n"        /* set bit */
  75.              "   csg   %0,%2,0(%1)n"
  76.              "   jl    0b"
  77.              : "+a" (nr), "+a" (addr), "=a" (bits), "=d" (mask) :
  78.              : "cc", "memory" );
  79. }
  80. /*
  81.  * SMP save clear_bit routine based on compare and swap (CS)
  82.  */
  83. static __inline__ void clear_bit_cs(unsigned long nr, volatile void * addr)
  84. {
  85.         unsigned long bits, mask;
  86.         __asm__ __volatile__(
  87. #if ALIGN_CS == 1
  88.              "   lghi  %2,7n"         /* CS must be aligned on 4 byte b. */
  89.              "   ngr   %2,%1n"        /* isolate last 2 bits of address */
  90.              "   xgr   %1,%2n"        /* make addr % 4 == 0 */
  91.              "   sllg  %2,%2,3n"
  92.              "   agr   %0,%2n"        /* add alignement to bitnr */
  93. #endif
  94.              "   lghi  %2,63n"
  95.              "   nr    %2,%0n"        /* make shift value */
  96.              "   xr    %0,%2n"
  97.              "   srlg  %0,%0,3n"
  98.              "   lghi  %3,-2n"
  99.              "   la    %1,0(%0,%1)n"  /* calc. address for CS */
  100.              "   lghi  %3,-2n"
  101.              "   rllg  %3,%3,0(%2)n"  /* make AND mask */
  102.              "   lg    %0,0(%1)n"
  103.              "0: lgr   %2,%0n"        /* CS loop starts here */
  104.              "   ngr   %2,%3n"        /* clear bit */
  105.              "   csg   %0,%2,0(%1)n"
  106.              "   jl    0b"
  107.              : "+a" (nr), "+a" (addr), "=a" (bits), "=d" (mask) :
  108.              : "cc", "memory" );
  109. }
  110. /*
  111.  * SMP save change_bit routine based on compare and swap (CS)
  112.  */
  113. static __inline__ void change_bit_cs(unsigned long nr, volatile void * addr)
  114. {
  115.         unsigned long bits, mask;
  116.         __asm__ __volatile__(
  117. #if ALIGN_CS == 1
  118.              "   lghi  %2,7n"         /* CS must be aligned on 4 byte b. */
  119.              "   ngr   %2,%1n"        /* isolate last 2 bits of address */
  120.              "   xgr   %1,%2n"        /* make addr % 4 == 0 */
  121.              "   sllg  %2,%2,3n"
  122.              "   agr   %0,%2n"        /* add alignement to bitnr */
  123. #endif
  124.              "   lghi  %2,63n"
  125.              "   nr    %2,%0n"        /* make shift value */
  126.              "   xr    %0,%2n"
  127.              "   srlg  %0,%0,3n"
  128.              "   lghi  %3,1n"
  129.              "   la    %1,0(%0,%1)n"  /* calc. address for CS */
  130.              "   sllg  %3,%3,0(%2)n"  /* make XR mask */
  131.              "   lg    %0,0(%1)n"
  132.              "0: lgr   %2,%0n"        /* CS loop starts here */
  133.              "   xgr   %2,%3n"        /* change bit */
  134.              "   csg   %0,%2,0(%1)n"
  135.              "   jl    0b"
  136.              : "+a" (nr), "+a" (addr), "=a" (bits), "=d" (mask) : 
  137.              : "cc", "memory" );
  138. }
  139. /*
  140.  * SMP save test_and_set_bit routine based on compare and swap (CS)
  141.  */
  142. static __inline__ int 
  143. test_and_set_bit_cs(unsigned long nr, volatile void * addr)
  144. {
  145.         unsigned long bits, mask;
  146.         __asm__ __volatile__(
  147. #if ALIGN_CS == 1
  148.              "   lghi  %2,7n"         /* CS must be aligned on 4 byte b. */
  149.              "   ngr   %2,%1n"        /* isolate last 2 bits of address */
  150.              "   xgr   %1,%2n"        /* make addr % 4 == 0 */
  151.              "   sllg  %2,%2,3n"
  152.              "   agr   %0,%2n"        /* add alignement to bitnr */
  153. #endif
  154.              "   lghi  %2,63n"
  155.              "   nr    %2,%0n"        /* make shift value */
  156.              "   xr    %0,%2n"
  157.              "   srlg  %0,%0,3n"
  158.              "   lghi  %3,1n"
  159.              "   la    %1,0(%0,%1)n"  /* calc. address for CS */
  160.              "   sllg  %3,%3,0(%2)n"  /* make OR mask */
  161.              "   lg    %0,0(%1)n"
  162.              "0: lgr   %2,%0n"        /* CS loop starts here */
  163.              "   ogr   %2,%3n"        /* set bit */
  164.              "   csg   %0,%2,0(%1)n"
  165.              "   jl    0bn"
  166.              "   ngr   %0,%3n"        /* isolate old bit */
  167.              : "+a" (nr), "+a" (addr), "=a" (bits), "=d" (mask) :
  168.              : "cc", "memory" );
  169.         return nr != 0;
  170. }
  171. /*
  172.  * SMP save test_and_clear_bit routine based on compare and swap (CS)
  173.  */
  174. static __inline__ int
  175. test_and_clear_bit_cs(unsigned long nr, volatile void * addr)
  176. {
  177.         unsigned long bits, mask;
  178.         __asm__ __volatile__(
  179. #if ALIGN_CS == 1
  180.              "   lghi  %2,7n"         /* CS must be aligned on 4 byte b. */
  181.              "   ngr   %2,%1n"        /* isolate last 2 bits of address */
  182.              "   xgr   %1,%2n"        /* make addr % 4 == 0 */
  183.              "   sllg  %2,%2,3n"
  184.              "   agr   %0,%2n"        /* add alignement to bitnr */
  185. #endif
  186.              "   lghi  %2,63n"
  187.              "   nr    %2,%0n"        /* make shift value */
  188.              "   xr    %0,%2n"
  189.              "   srlg  %0,%0,3n"
  190.              "   lghi  %3,-2n"
  191.              "   la    %1,0(%0,%1)n"  /* calc. address for CS */
  192.              "   rllg  %3,%3,0(%2)n"  /* make AND mask */
  193.              "   lg    %0,0(%1)n"
  194.              "0: lgr   %2,%0n"        /* CS loop starts here */
  195.              "   ngr   %2,%3n"        /* clear bit */
  196.              "   csg   %0,%2,0(%1)n"
  197.              "   jl    0bn"
  198.              "   xgr   %0,%2n"        /* isolate old bit */
  199.              : "+a" (nr), "+a" (addr), "=a" (bits), "=d" (mask) :
  200.              : "cc", "memory" );
  201.         return nr != 0;
  202. }
  203. /*
  204.  * SMP save test_and_change_bit routine based on compare and swap (CS) 
  205.  */
  206. static __inline__ int
  207. test_and_change_bit_cs(unsigned long nr, volatile void * addr)
  208. {
  209.         unsigned long bits, mask;
  210.         __asm__ __volatile__(
  211. #if ALIGN_CS == 1
  212.              "   lghi  %2,7n"         /* CS must be aligned on 4 byte b. */
  213.              "   ngr   %2,%1n"        /* isolate last 2 bits of address */
  214.              "   xgr   %1,%2n"        /* make addr % 4 == 0 */
  215.              "   sllg  %2,%2,3n"
  216.              "   agr   %0,%2n"        /* add alignement to bitnr */
  217. #endif
  218.              "   lghi  %2,63n"
  219.              "   nr    %2,%0n"        /* make shift value */
  220.              "   xr    %0,%2n"
  221.              "   srlg  %0,%0,3n"
  222.              "   lghi  %3,1n"
  223.              "   la    %1,0(%0,%1)n"  /* calc. address for CS */
  224.              "   sllg  %3,%3,0(%2)n"  /* make OR mask */
  225.              "   lg    %0,0(%1)n"
  226.              "0: lgr   %2,%0n"        /* CS loop starts here */
  227.              "   xgr   %2,%3n"        /* change bit */
  228.              "   csg   %0,%2,0(%1)n"
  229.              "   jl    0bn"
  230.              "   ngr   %0,%3n"        /* isolate old bit */
  231.              : "+a" (nr), "+a" (addr), "=a" (bits), "=d" (mask) :
  232.              : "cc", "memory" );
  233.         return nr != 0;
  234. }
  235. #endif /* CONFIG_SMP */
  236. /*
  237.  * fast, non-SMP set_bit routine
  238.  */
  239. static __inline__ void __set_bit(unsigned long nr, volatile void * addr)
  240. {
  241.         __asm__ __volatile__(
  242.              "   lghi  2,56n"
  243.              "   lghi  1,7n"
  244.              "   xgr   2,%0n"
  245.              "   nr    1,%0n"
  246.              "   srlg  2,2,3n"
  247.              "   la    2,0(2,%1)n"
  248.              "   la    1,0(1,%2)n"
  249.              "   oc    0(1,2),0(1)"
  250.              :  : "a" (nr), "a" (addr), "a" (&_oi_bitmap)
  251.              : "cc", "memory", "1", "2" );
  252. }
  253. static __inline__ void 
  254. __constant_set_bit(const unsigned long nr, volatile void * addr)
  255. {
  256.   switch (nr&7) {
  257.   case 0:
  258.     __asm__ __volatile__ ("la 1,%0nt"
  259.                           "oi 0(1),0x01"
  260.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7))) 
  261.                           : : "1", "cc", "memory");
  262.     break;
  263.   case 1:
  264.     __asm__ __volatile__ ("la 1,%0nt"
  265.                           "oi 0(1),0x02"
  266.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  267.                           : : "1", "cc", "memory" );
  268.     break;
  269.   case 2:
  270.     __asm__ __volatile__ ("la 1,%0nt"
  271.                           "oi 0(1),0x04"
  272.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  273.                           : : "1", "cc", "memory" );
  274.     break;
  275.   case 3:
  276.     __asm__ __volatile__ ("la 1,%0nt"
  277.                           "oi 0(1),0x08"
  278.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  279.                           : : "1", "cc", "memory" );
  280.     break;
  281.   case 4:
  282.     __asm__ __volatile__ ("la 1,%0nt"
  283.                           "oi 0(1),0x10"
  284.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  285.                           : : "1", "cc", "memory" );
  286.     break;
  287.   case 5:
  288.     __asm__ __volatile__ ("la 1,%0nt"
  289.                           "oi 0(1),0x20"
  290.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  291.                           : : "1", "cc", "memory" );
  292.     break;
  293.   case 6:
  294.     __asm__ __volatile__ ("la 1,%0nt"
  295.                           "oi 0(1),0x40"
  296.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  297.                           : : "1", "cc", "memory" );
  298.     break;
  299.   case 7:
  300.     __asm__ __volatile__ ("la 1,%0nt"
  301.                           "oi 0(1),0x80"
  302.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  303.                           : : "1", "cc", "memory" );
  304.     break;
  305.   }
  306. }
  307. #define set_bit_simple(nr,addr) 
  308. (__builtin_constant_p((nr)) ? 
  309.  __constant_set_bit((nr),(addr)) : 
  310.  __set_bit((nr),(addr)) )
  311. /*
  312.  * fast, non-SMP clear_bit routine
  313.  */
  314. static __inline__ void 
  315. __clear_bit(unsigned long nr, volatile void * addr)
  316. {
  317.         __asm__ __volatile__(
  318.              "   lghi  2,56n"
  319.              "   lghi  1,7n"
  320.              "   xgr   2,%0n"
  321.              "   nr    1,%0n"
  322.              "   srlg  2,2,3n"
  323.              "   la    2,0(2,%1)n"
  324.              "   la    1,0(1,%2)n"
  325.              "   nc    0(1,2),0(1)"
  326.              :  : "d" (nr), "a" (addr), "a" (&_ni_bitmap)
  327.              : "cc", "memory", "1", "2" );
  328. }
  329. static __inline__ void 
  330. __constant_clear_bit(const unsigned long nr, volatile void * addr)
  331. {
  332.   switch (nr&7) {
  333.   case 0:
  334.     __asm__ __volatile__ ("la 1,%0nt"
  335.                           "ni 0(1),0xFE"
  336.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  337.                           : : "1", "cc", "memory" );
  338.     break;
  339.   case 1:
  340.     __asm__ __volatile__ ("la 1,%0nt"
  341.                           "ni 0(1),0xFD"
  342.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  343.                           : : "1", "cc", "memory" );
  344.     break;
  345.   case 2:
  346.     __asm__ __volatile__ ("la 1,%0nt"
  347.                           "ni 0(1),0xFB"
  348.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  349.                           : : "1", "cc", "memory" );
  350.     break;
  351.   case 3:
  352.     __asm__ __volatile__ ("la 1,%0nt"
  353.                           "ni 0(1),0xF7"
  354.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  355.                           : : "1", "cc", "memory" );
  356.     break;
  357.   case 4:
  358.     __asm__ __volatile__ ("la 1,%0nt"
  359.                           "ni 0(1),0xEF"
  360.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  361.                           : : "cc", "memory" );
  362.     break;
  363.   case 5:
  364.     __asm__ __volatile__ ("la 1,%0nt"
  365.                           "ni 0(1),0xDF"
  366.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  367.                           : : "1", "cc", "memory" );
  368.     break;
  369.   case 6:
  370.     __asm__ __volatile__ ("la 1,%0nt"
  371.                           "ni 0(1),0xBF"
  372.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  373.                           : : "1", "cc", "memory" );
  374.     break;
  375.   case 7:
  376.     __asm__ __volatile__ ("la 1,%0nt"
  377.                           "ni 0(1),0x7F"
  378.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  379.                           : : "1", "cc", "memory" );
  380.     break;
  381.   }
  382. }
  383. #define clear_bit_simple(nr,addr) 
  384. (__builtin_constant_p((nr)) ? 
  385.  __constant_clear_bit((nr),(addr)) : 
  386.  __clear_bit((nr),(addr)) )
  387. /* 
  388.  * fast, non-SMP change_bit routine 
  389.  */
  390. static __inline__ void __change_bit(unsigned long nr, volatile void * addr)
  391. {
  392.         __asm__ __volatile__(
  393.              "   lghi  2,56n"
  394.              "   lghi  1,7n"
  395.              "   xgr   2,%0n"
  396.              "   nr    1,%0n"
  397.              "   srlg  2,2,3n"
  398.              "   la    2,0(2,%1)n"
  399.              "   la    1,0(1,%2)n"
  400.              "   xc    0(1,2),0(1)"
  401.              :  : "d" (nr), "a" (addr), "a" (&_oi_bitmap)
  402.              : "cc", "memory", "1", "2" );
  403. }
  404. static __inline__ void 
  405. __constant_change_bit(const unsigned long nr, volatile void * addr) 
  406. {
  407.   switch (nr&7) {
  408.   case 0:
  409.     __asm__ __volatile__ ("la 1,%0nt"
  410.                           "xi 0(1),0x01"
  411.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  412.                           : : "cc", "memory" );
  413.     break;
  414.   case 1:
  415.     __asm__ __volatile__ ("la 1,%0nt"
  416.                           "xi 0(1),0x02"
  417.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  418.                           : : "cc", "memory" );
  419.     break;
  420.   case 2:
  421.     __asm__ __volatile__ ("la 1,%0nt"
  422.                           "xi 0(1),0x04"
  423.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  424.                           : : "cc", "memory" );
  425.     break;
  426.   case 3:
  427.     __asm__ __volatile__ ("la 1,%0nt"
  428.                           "xi 0(1),0x08"
  429.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  430.                           : : "cc", "memory" );
  431.     break;
  432.   case 4:
  433.     __asm__ __volatile__ ("la 1,%0nt"
  434.                           "xi 0(1),0x10"
  435.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  436.                           : : "cc", "memory" );
  437.     break;
  438.   case 5:
  439.     __asm__ __volatile__ ("la 1,%0nt"
  440.                           "xi 0(1),0x20"
  441.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  442.                           : : "1", "cc", "memory" );
  443.     break;
  444.   case 6:
  445.     __asm__ __volatile__ ("la 1,%0nt"
  446.                           "xi 0(1),0x40"
  447.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  448.                           : : "1", "cc", "memory" );
  449.     break;
  450.   case 7:
  451.     __asm__ __volatile__ ("la 1,%0nt"
  452.                           "xi 0(1),0x80"
  453.                           : "=m" (*((volatile char *) addr + ((nr>>3)^7)))
  454.                           : : "1", "cc", "memory" );
  455.     break;
  456.   }
  457. }
  458. #define change_bit_simple(nr,addr) 
  459. (__builtin_constant_p((nr)) ? 
  460.  __constant_change_bit((nr),(addr)) : 
  461.  __change_bit((nr),(addr)) )
  462. /*
  463.  * fast, non-SMP test_and_set_bit routine
  464.  */
  465. static __inline__ int
  466. test_and_set_bit_simple(unsigned long nr, volatile void * addr)
  467. {
  468.         int oldbit;
  469.         __asm__ __volatile__(
  470.              "   lghi  1,56n"
  471.              "   lghi  2,7n"
  472.              "   xgr   1,%1n"
  473.              "   nr    2,%1n"
  474.              "   srlg  1,1,3n"
  475.              "   la    1,0(1,%2)n"
  476.              "   ic    %0,0(1)n"
  477.              "   srl   %0,0(2)n"
  478.              "   la    2,0(2,%3)n"
  479.              "   oc    0(1,1),0(2)"
  480.              : "=&d" (oldbit) : "d" (nr), "a" (addr), "a" (&_oi_bitmap)
  481.              : "cc", "memory", "1", "2" );
  482.         return oldbit & 1;
  483. }
  484. #define __test_and_set_bit(X,Y) test_and_set_bit_simple(X,Y)
  485. /*
  486.  * fast, non-SMP test_and_clear_bit routine
  487.  */
  488. static __inline__ int
  489. test_and_clear_bit_simple(unsigned long nr, volatile void * addr)
  490. {
  491.         int oldbit;
  492.         __asm__ __volatile__(
  493.              "   lghi  1,56n"
  494.              "   lghi  2,7n"
  495.              "   xgr   1,%1n"
  496.              "   nr    2,%1n"
  497.              "   srlg  1,1,3n"
  498.              "   la    1,0(1,%2)n"
  499.              "   ic    %0,0(1)n"
  500.              "   srl   %0,0(2)n"
  501.              "   la    2,0(2,%3)n"
  502.              "   nc    0(1,1),0(2)"
  503.              : "=&d" (oldbit) : "d" (nr), "a" (addr), "a" (&_ni_bitmap)
  504.              : "cc", "memory", "1", "2" );
  505.         return oldbit & 1;
  506. }
  507. #define __test_and_clear_bit(X,Y) test_and_clear_bit_simple(X,Y)
  508. /*
  509.  * fast, non-SMP test_and_change_bit routine
  510.  */
  511. static __inline__ int
  512. test_and_change_bit_simple(unsigned long nr, volatile void * addr)
  513. {
  514.         int oldbit;
  515.         __asm__ __volatile__(
  516.              "   lghi  1,56n"
  517.              "   lghi  2,7n"
  518.              "   xgr   1,%1n"
  519.              "   nr    2,%1n"
  520.              "   srlg  1,1,3n"
  521.              "   la    1,0(1,%2)n"
  522.              "   ic    %0,0(1)n"
  523.              "   srl   %0,0(2)n"
  524.              "   la    2,0(2,%3)n"
  525.              "   xc    0(1,1),0(2)"
  526.              : "=&d" (oldbit) : "d" (nr), "a" (addr), "a" (&_oi_bitmap)
  527.              : "cc", "memory", "1", "2" );
  528.         return oldbit & 1;
  529. }
  530. #define __test_and_change_bit(X,Y) test_and_change_bit_simple(X,Y)
  531. #ifdef CONFIG_SMP
  532. #define set_bit             set_bit_cs
  533. #define clear_bit           clear_bit_cs
  534. #define change_bit          change_bit_cs
  535. #define test_and_set_bit    test_and_set_bit_cs
  536. #define test_and_clear_bit  test_and_clear_bit_cs
  537. #define test_and_change_bit test_and_change_bit_cs
  538. #else
  539. #define set_bit             set_bit_simple
  540. #define clear_bit           clear_bit_simple
  541. #define change_bit          change_bit_simple
  542. #define test_and_set_bit    test_and_set_bit_simple
  543. #define test_and_clear_bit  test_and_clear_bit_simple
  544. #define test_and_change_bit test_and_change_bit_simple
  545. #endif
  546. /*
  547.  * This routine doesn't need to be atomic.
  548.  */
  549. static __inline__ int __test_bit(unsigned long nr, volatile void * addr)
  550. {
  551.         int oldbit;
  552.         __asm__ __volatile__(
  553.              "   lghi  2,56n"
  554.              "   lghi  1,7n"
  555.              "   xgr   2,%1n"
  556.              "   nr    1,%1n"
  557.              "   srlg  2,2,3n"
  558.              "   ic    %0,0(2,%2)n"
  559.              "   srl   %0,0(1)n"
  560.              : "=&d" (oldbit) : "d" (nr), "a" (addr)
  561.              : "cc", "1", "2" );
  562.         return oldbit & 1;
  563. }
  564. static __inline__ int 
  565. __constant_test_bit(unsigned long nr, volatile void * addr) {
  566.     return (((volatile char *) addr)[(nr>>3)^7] & (1<<(nr&7))) != 0;
  567. }
  568. #define test_bit(nr,addr) 
  569. (__builtin_constant_p((nr)) ? 
  570.  __constant_test_bit((nr),(addr)) : 
  571.  __test_bit((nr),(addr)) )
  572. /*
  573.  * Find-bit routines..
  574.  */
  575. static __inline__ unsigned long
  576. find_first_zero_bit(void * addr, unsigned long size)
  577. {
  578.         unsigned long res;
  579.         if (!size)
  580.                 return 0;
  581.         __asm__("   lghi  0,-1n"
  582.                 "   lgr   1,%1n"
  583.                 "   slgr  %0,%0n"
  584.                 "   aghi  1,63n"
  585.                 "   srlg  1,1,6n"
  586.                 "0: cg    0,0(%0,%2)n"
  587.                 "   jne   1fn"
  588.                 "   aghi  %0,8n"
  589.                 "   brct  1,0bn"
  590.                 "   lgr   %0,%1n"
  591.                 "   j     5fn"
  592.                 "1: lg    1,0(%0,%2)n"
  593.                 "   sllg  %0,%0,3n"
  594.                 "   clr   1,0n"
  595. "   jne   2fn"
  596. "   aghi  %0,32n"
  597.                 "   srlg  1,1,32n"
  598. "2: lghi  0,0xffn"
  599.                 "   tmll  1,0xffffn"
  600.                 "   jno   3fn"
  601.                 "   aghi  %0,16n"
  602.                 "   srl   1,16n"
  603.                 "3: tmll  1,0x00ffn"
  604.                 "   jno   4fn"
  605.                 "   aghi  %0,8n"
  606.                 "   srl   1,8n"
  607.                 "4: ngr   1,0n"
  608.                 "   ic    1,0(1,%3)n"
  609.                 "   algr  %0,1n"
  610.                 "5:"
  611.                 : "=&a" (res) : "a" (size), "a" (addr), "a" (&_zb_findmap)
  612.                 : "cc", "0", "1" );
  613.         return (res < size) ? res : size;
  614. }
  615. static __inline__ unsigned long
  616. find_next_zero_bit (void * addr, unsigned long size, unsigned long offset)
  617. {
  618.         unsigned long * p = ((unsigned long *) addr) + (offset >> 6);
  619.         unsigned long bitvec;
  620.         unsigned long set, bit = offset & 63, res;
  621.         if (bit) {
  622.                 /*
  623.                  * Look for zero in first word
  624.                  */
  625.                 bitvec = (*p) >> bit;
  626.                 __asm__("   lhi  0,-1n"
  627.                         "   lgr  1,%1n"
  628.                         "   slgr %0,%0n"
  629.                         "   clr  1,0n"
  630.                         "   jne  0fn"
  631.                         "   aghi %0,32n"
  632.                         "   srlg 1,1,32n"
  633. "0: lghi 0,0xffn"
  634.                         "   tmll 1,0xffffn"
  635.                         "   jno  1fn"
  636.                         "   aghi %0,16n"
  637.                         "   srlg 1,1,16n"
  638.                         "1: tmll 1,0x00ffn"
  639.                         "   jno  2fn"
  640.                         "   aghi %0,8n"
  641.                         "   srlg 1,1,8n"
  642.                         "2: ngr  1,0n"
  643.                         "   ic   1,0(1,%2)n"
  644.                         "   algr %0,1"
  645.                         : "=&d" (set) 
  646.                         : "d" (bitvec), "a" (&_zb_findmap)
  647.                         : "cc", "0", "1" );
  648.                 if (set < (64 - bit))
  649.                         return set + offset;
  650.                 offset += 64 - bit;
  651.                 p++;
  652.         }
  653.         /*
  654.          * No zero yet, search remaining full words for a zero
  655.          */
  656.         res = find_first_zero_bit (p, size - 64 * (p - (unsigned long *) addr));
  657.         return (offset + res);
  658. }
  659. /*
  660.  * ffz = Find First Zero in word. Undefined if no zero exists,
  661.  * so code should check against ~0UL first..
  662.  */
  663. static __inline__ unsigned long ffz(unsigned long word)
  664. {
  665.         int result;
  666.         __asm__("   lhi  0,-1n"
  667.                 "   lgr  1,%1n"
  668.                 "   slgr %0,%0n"
  669.                 "   clr  1,0n"
  670.                 "   jne  0fn"
  671.                 "   aghi %0,32n"
  672.                 "   srlg 1,1,32n"
  673.                 "0: lghi 0,0xffn"
  674.                 "   tmll 1,0xffffn"
  675.                 "   jno  1fn"
  676.                 "   aghi %0,16n"
  677.                 "   srlg 1,1,16n"
  678.                 "1: tmll 1,0x00ffn"
  679.                 "   jno  2fn"
  680.                 "   aghi %0,8n"
  681.                 "   srlg 1,1,8n"
  682.                 "2: ngr  1,0n"
  683.                 "   ic   1,0(1,%2)n"
  684.                 "   algr %0,1"
  685.                 : "=&d" (result)
  686.                 : "d" (word), "a" (&_zb_findmap)
  687.                 : "cc", "0", "1" );
  688.         return result;
  689. }
  690. /*
  691.  * ffs: find first bit set. This is defined the same way as
  692.  * the libc and compiler builtin ffs routines, therefore
  693.  * differs in spirit from the above ffz (man ffs).
  694.  */
  695. extern int __inline__ ffs (int x)
  696. {
  697.         int r;
  698.         if (x == 0)
  699.           return 0;
  700.         __asm__("    lr   1,%1n"
  701.                 "    slr  %0,%0n"
  702.                 "    tml  1,0xFFFFn"
  703.                 "    jnz  0fn"
  704.                 "    ahi  %0,16n"
  705.                 "    srl  1,16n"
  706.                 "0:  tml  1,0x00FFn"
  707.                 "    jnz  1fn"
  708.                 "    ahi  %0,8n"
  709.                 "    srl  1,8n"
  710.                 "1:  tml  1,0x000Fn"
  711.                 "    jnz  2fn"
  712.                 "    ahi  %0,4n"
  713.                 "    srl  1,4n"
  714.                 "2:  tml  1,0x0003n"
  715.                 "    jnz  3fn"
  716.                 "    ahi  %0,2n"
  717.                 "    srl  1,2n"
  718.                 "3:  tml  1,0x0001n"
  719.                 "    jnz  4fn"
  720.                 "    ahi  %0,1n"
  721.                 "4:"
  722.                 : "=&d" (r) : "d" (x) : "cc", "1" );
  723.         return r+1;
  724. }
  725. /*
  726.  * hweightN: returns the hamming weight (i.e. the number
  727.  * of bits set) of a N-bit word
  728.  */
  729. #define hweight32(x) generic_hweight32(x)
  730. #define hweight16(x) generic_hweight16(x)
  731. #define hweight8(x) generic_hweight8(x)
  732. #ifdef __KERNEL__
  733. /*
  734.  * ATTENTION: intel byte ordering convention for ext2 and minix !!
  735.  * bit 0 is the LSB of addr; bit 31 is the MSB of addr;
  736.  * bit 32 is the LSB of (addr+4).
  737.  * That combined with the little endian byte order of Intel gives the
  738.  * following bit order in memory:
  739.  *    07 06 05 04 03 02 01 00 15 14 13 12 11 10 09 08 
  740.  *    23 22 21 20 19 18 17 16 31 30 29 28 27 26 25 24
  741.  */
  742. #define ext2_set_bit(nr, addr)       test_and_set_bit((nr)^56, addr)
  743. #define ext2_clear_bit(nr, addr)     test_and_clear_bit((nr)^56, addr)
  744. #define ext2_test_bit(nr, addr)      test_bit((nr)^56, addr)
  745. static __inline__ unsigned long
  746. ext2_find_first_zero_bit(void *vaddr, unsigned long size)
  747. {
  748.         unsigned long res;
  749.         if (!size)
  750.                 return 0;
  751.         __asm__("   lghi  0,-1n"
  752.                 "   lgr   1,%1n"
  753.                 "   aghi  1,63n"
  754.                 "   srlg  1,1,6n"
  755.                 "   slgr  %0,%0n"
  756.                 "0: clg   0,0(%0,%2)n"
  757.                 "   jne   1fn"
  758.                 "   aghi  %0,8n"
  759.                 "   brct  1,0bn"
  760.                 "   lgr   %0,%1n"
  761.                 "   j     5fn"
  762.                 "1: cl    0,0(%0,%2)n"
  763. "   jne   2fn"
  764. "   aghi  %0,4n"
  765. "2: l     1,0(%0,%2)n"
  766.                 "   sllg  %0,%0,3n"
  767.                 "   aghi  %0,24n"
  768.                 "   lghi  0,0xffn"
  769.                 "   tmlh  1,0xffffn"
  770.                 "   jo    3fn"
  771.                 "   aghi  %0,-16n"
  772.                 "   srl   1,16n"
  773.                 "3: tmll  1,0xff00n"
  774.                 "   jo    4fn"
  775.                 "   aghi  %0,-8n"
  776.                 "   srl   1,8n"
  777.                 "4: ngr   1,0n"
  778.                 "   ic    1,0(1,%3)n"
  779.                 "   algr  %0,1n"
  780.                 "5:"
  781.                 : "=&a" (res) : "a" (size), "a" (vaddr), "a" (&_zb_findmap)
  782.                 : "cc", "0", "1" );
  783.         return (res < size) ? res : size;
  784. }
  785. static __inline__ unsigned long
  786. ext2_find_next_zero_bit(void *vaddr, unsigned long size, unsigned long offset)
  787. {
  788.         unsigned long *addr = vaddr;
  789.         unsigned long *p = addr + (offset >> 6);
  790.         unsigned long word;
  791.         unsigned long bit = offset & 63UL, res;
  792.         if (offset >= size)
  793.                 return size;
  794.         if (bit) {
  795.                 __asm__("   lrvg %0,%1" /* load reversed, neat instruction */
  796.                         : "=a" (word) : "m" (*p) );
  797.                 word >>= bit;
  798.                 res = bit;
  799.                 /* Look for zero in first 8 byte word */
  800.                 __asm__("   lgr  1,%1n"
  801.                         "   lghi 0,0xffn"
  802. "   tmll 1,0xffffn"
  803. "   jno  2fn"
  804. "   ahi  %0,16n"
  805. "   srlg 1,1,16n"
  806.                  "0: tmll 1,0xffffn"
  807.                         "   jno  2fn"
  808.                         "   ahi  %0,16n"
  809.                         "   srlg 1,1,16n"
  810.                         "1: tmll 1,0xffffn"
  811.                         "   jno  2fn"
  812.                         "   ahi  %0,16n"
  813.                         "   srl  1,16n"
  814.                         "2: tmll 1,0x00ffn"
  815.                  "   jno  3fn"
  816.                  "   ahi  %0,8n"
  817.                  "   srl  1,8n"
  818.                  "3: ngr  1,0n"
  819.                  "   ic   1,0(1,%2)n"
  820.                  "   alr  %0,1"
  821.                  : "+&d" (res) 
  822.                    : "d" (word), "a" (&_zb_findmap)
  823.                  : "cc", "0", "1" );
  824.                 if (res < 64)
  825. return (p - addr)*64 + res;
  826.                 p++;
  827.         }
  828.         /* No zero yet, search remaining full bytes for a zero */
  829.         res = ext2_find_first_zero_bit (p, size - 64 * (p - addr));
  830.         return (p - addr) * 64 + res;
  831. }
  832. /* Bitmap functions for the minix filesystem.  */
  833. /* FIXME !!! */
  834. #define minix_test_and_set_bit(nr,addr) test_and_set_bit(nr,addr)
  835. #define minix_set_bit(nr,addr) set_bit(nr,addr)
  836. #define minix_test_and_clear_bit(nr,addr) test_and_clear_bit(nr,addr)
  837. #define minix_test_bit(nr,addr) test_bit(nr,addr)
  838. #define minix_find_first_zero_bit(addr,size) find_first_zero_bit(addr,size)
  839. #endif /* __KERNEL__ */
  840. #endif /* _S390_BITOPS_H */