]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/asm-arm/arch-sa1100/bitfield.h
imported Ka-Ro specific additions to U-Boot 2009.08 for TX28
[karo-tx-uboot.git] / include / asm-arm / arch-sa1100 / bitfield.h
index 2ac5ea21cfd3e206ea45f98a8962a22ffa27a1c1..104a21c2e47d17f58c6eeedc687dd4ae2367dfe3 100755 (executable)
@@ -1,13 +1,13 @@
 /*
- *     FILE            bitfield.h
+ *     FILE            bitfield.h
  *
- *     Version         1.1
- *     Author          Copyright (c) Marc A. Viredaz, 1998
- *                     DEC Western Research Laboratory, Palo Alto, CA
- *     Date            April 1998 (April 1997)
- *     System          Advanced RISC Machine (ARM)
+ *     Version         1.1
+ *     Author          Copyright (c) Marc A. Viredaz, 1998
+ *                     DEC Western Research Laboratory, Palo Alto, CA
+ *     Date            April 1998 (April 1997)
+ *     System          Advanced RISC Machine (ARM)
  *     Language        C or ARM Assembly
- *     Purpose         Definition of macros to operate on bit fields.
+ *     Purpose         Definition of macros to operate on bit fields.
  */
 
 
  *    line-size limit).
  *
  * Input
- *    Size             Size of the bit field, in number of bits.
- *    Shft             Shift value of the bit field with respect to bit 0.
+ *    Size             Size of the bit field, in number of bits.
+ *    Shft             Shift value of the bit field with respect to bit 0.
  *
  * Output
- *    Fld              Encoded bit field.
+ *    Fld              Encoded bit field.
  */
 
 #define Fld(Size, Shft)        (((Size) << 16) + (Shft))
  *    bit field.
  *
  * Input
- *    Field            Encoded bit field (using the macro "Fld").
+ *    Field            Encoded bit field (using the macro "Fld").
  *
  * Output
- *    FSize            Size of the bit field, in number of bits.
- *    FShft            Shift value of the bit field with respect to bit 0.
- *    FMsk             Mask for the bit field.
- *    FAlnMsk          Mask for the bit field, aligned on bit 0.
- *    F1stBit          First bit of the bit field.
+ *    FSize            Size of the bit field, in number of bits.
+ *    FShft            Shift value of the bit field with respect to bit 0.
+ *    FMsk             Mask for the bit field.
+ *    FAlnMsk          Mask for the bit field, aligned on bit 0.
+ *    F1stBit          First bit of the bit field.
  */
 
 #define FSize(Field)   ((Field) >> 16)
  *    former appropriately.
  *
  * Input
- *    Value            Bit-field value.
- *    Field            Encoded bit field (using the macro "Fld").
+ *    Value            Bit-field value.
+ *    Field            Encoded bit field (using the macro "Fld").
  *
  * Output
- *    FInsrt           Bit-field value positioned appropriately.
+ *    FInsrt           Bit-field value positioned appropriately.
  */
 
 #define FInsrt(Value, Field) \
  *    shifting it appropriately.
  *
  * Input
- *    Data             Data containing the bit-field to be extracted.
- *    Field            Encoded bit field (using the macro "Fld").
+ *    Data             Data containing the bit-field to be extracted.
+ *    Field            Encoded bit field (using the macro "Fld").
  *
  * Output
- *    FExtr            Bit-field value.
+ *    FExtr            Bit-field value.
  */
 
 #define FExtr(Data, Field) \