8 * Compose two values, using a bitmask as decision value
9 * This is equivalent to (a & mask) | (b & ~mask)
12 static inline unsigned long
13 comp(unsigned long a, unsigned long b, unsigned long mask)
15 return ((a ^ b) & mask) ^ b;
19 * Create a pattern with the given pixel's color
22 #if BITS_PER_LONG == 64
23 static inline unsigned long
24 pixel_to_pat( u32 bpp, u32 pixel)
28 return 0xfffffffffffffffful*pixel;
30 return 0x5555555555555555ul*pixel;
32 return 0x1111111111111111ul*pixel;
34 return 0x0101010101010101ul*pixel;
36 return 0x1001001001001001ul*pixel;
38 return 0x0001000100010001ul*pixel;
40 return 0x0001000001000001ul*pixel;
42 return 0x0000000100000001ul*pixel;
44 panic("pixel_to_pat(): unsupported pixelformat\n");
48 static inline unsigned long
49 pixel_to_pat( u32 bpp, u32 pixel)
53 return 0xfffffffful*pixel;
55 return 0x55555555ul*pixel;
57 return 0x11111111ul*pixel;
59 return 0x01010101ul*pixel;
61 return 0x01001001ul*pixel;
63 return 0x00010001ul*pixel;
65 return 0x01000001ul*pixel;
67 return 0x00000001ul*pixel;
69 panic("pixel_to_pat(): unsupported pixelformat\n");
74 #ifdef CONFIG_FB_CFB_REV_PIXELS_IN_BYTE
75 #if BITS_PER_LONG == 64
76 #define REV_PIXELS_MASK1 0x5555555555555555ul
77 #define REV_PIXELS_MASK2 0x3333333333333333ul
78 #define REV_PIXELS_MASK4 0x0f0f0f0f0f0f0f0ful
80 #define REV_PIXELS_MASK1 0x55555555ul
81 #define REV_PIXELS_MASK2 0x33333333ul
82 #define REV_PIXELS_MASK4 0x0f0f0f0ful
85 static inline unsigned long fb_rev_pixels_in_long(unsigned long val,
89 val = comp(val >> 1, val << 1, REV_PIXELS_MASK1);
91 val = comp(val >> 2, val << 2, REV_PIXELS_MASK2);
93 val = comp(val >> 4, val << 4, REV_PIXELS_MASK4);
97 static inline u32 fb_shifted_pixels_mask_u32(struct fb_info *p, u32 index,
103 mask = FB_SHIFT_HIGH(p, ~(u32)0, index);
105 mask = 0xff << FB_LEFT_POS(p, 8);
106 mask = FB_SHIFT_LOW(p, mask, index & (bswapmask)) & mask;
107 mask = FB_SHIFT_HIGH(p, mask, index & ~(bswapmask));
108 #if defined(__i386__) || defined(__x86_64__)
109 /* Shift argument is limited to 0 - 31 on x86 based CPU's */
110 if(index + bswapmask < 32)
112 mask |= FB_SHIFT_HIGH(p, ~(u32)0,
113 (index + bswapmask) & ~(bswapmask));
118 static inline unsigned long fb_shifted_pixels_mask_long(struct fb_info *p,
125 mask = FB_SHIFT_HIGH(p, ~0UL, index);
127 mask = 0xff << FB_LEFT_POS(p, 8);
128 mask = FB_SHIFT_LOW(p, mask, index & (bswapmask)) & mask;
129 mask = FB_SHIFT_HIGH(p, mask, index & ~(bswapmask));
130 #if defined(__i386__) || defined(__x86_64__)
131 /* Shift argument is limited to 0 - 31 on x86 based CPU's */
132 if(index + bswapmask < BITS_PER_LONG)
134 mask |= FB_SHIFT_HIGH(p, ~0UL,
135 (index + bswapmask) & ~(bswapmask));
141 static inline u32 fb_compute_bswapmask(struct fb_info *info)
144 unsigned bpp = info->var.bits_per_pixel;
146 if ((bpp < 8) && (info->var.nonstd & FB_NONSTD_REV_PIX_IN_B)) {
148 * Reversed order of pixel layout in bytes
149 * works only for 1, 2 and 4 bpp
151 bswapmask = 7 - bpp + 1;
156 #else /* CONFIG_FB_CFB_REV_PIXELS_IN_BYTE */
158 static inline unsigned long fb_rev_pixels_in_long(unsigned long val,
164 #define fb_shifted_pixels_mask_u32(p, i, b) FB_SHIFT_HIGH((p), ~(u32)0, (i))
165 #define fb_shifted_pixels_mask_long(p, i, b) FB_SHIFT_HIGH((p), ~0UL, (i))
166 #define fb_compute_bswapmask(...) 0
168 #endif /* CONFIG_FB_CFB_REV_PIXELS_IN_BYTE */
170 #define cpu_to_le_long _cpu_to_le_long(BITS_PER_LONG)
171 #define _cpu_to_le_long(x) __cpu_to_le_long(x)
172 #define __cpu_to_le_long(x) cpu_to_le##x
174 #define le_long_to_cpu _le_long_to_cpu(BITS_PER_LONG)
175 #define _le_long_to_cpu(x) __le_long_to_cpu(x)
176 #define __le_long_to_cpu(x) le##x##_to_cpu
178 static inline unsigned long rolx(unsigned long word, unsigned int shift, unsigned int x)
180 return (word << shift) | (word >> (x - shift));
183 #endif /* FB_DRAW_H */