]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-omap24xx/bits.h
ac14xx: rephrase network boot config for development
[karo-tx-uboot.git] / arch / arm / include / asm / arch-omap24xx / bits.h
1 /* bits.h
2  * Copyright (c) 2004 Texas Instruments
3  *
4  * This package is free software;  you can redistribute it and/or
5  * modify it under the terms of the license found in the file
6  * named COPYING that should have accompanied this file.
7  *
8  * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
9  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
10  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
11  */
12 #ifndef __bits_h
13 #define __bits_h 1
14
15 #define BIT0  (1<<0)
16 #define BIT1  (1<<1)
17 #define BIT2  (1<<2)
18 #define BIT3  (1<<3)
19 #define BIT4  (1<<4)
20 #define BIT5  (1<<5)
21 #define BIT6  (1<<6)
22 #define BIT7  (1<<7)
23 #define BIT8  (1<<8)
24 #define BIT9  (1<<9)
25 #define BIT10 (1<<10)
26 #define BIT11 (1<<11)
27 #define BIT12 (1<<12)
28 #define BIT13 (1<<13)
29 #define BIT14 (1<<14)
30 #define BIT15 (1<<15)
31 #define BIT16 (1<<16)
32 #define BIT17 (1<<17)
33 #define BIT18 (1<<18)
34 #define BIT19 (1<<19)
35 #define BIT20 (1<<20)
36 #define BIT21 (1<<21)
37 #define BIT22 (1<<22)
38 #define BIT23 (1<<23)
39 #define BIT24 (1<<24)
40 #define BIT25 (1<<25)
41 #define BIT26 (1<<26)
42 #define BIT27 (1<<27)
43 #define BIT28 (1<<28)
44 #define BIT29 (1<<29)
45 #define BIT30 (1<<30)
46 #define BIT31 (1<<31)
47
48 #endif