]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - include/drm/drm_fixed.h
drm: move radeon_fixed.h to shared drm_fixed.h header
[net-next-2.6.git] / include / drm / drm_fixed.h
similarity index 60%
rename from drivers/gpu/drm/radeon/radeon_fixed.h
rename to include/drm/drm_fixed.h
index 3d4d84e078ac14d1cd40c4b3b74250b9faeb5ede..4a08a664ff1f243fd14cdc094215627e7a626605 100644 (file)
  *
  * Authors: Dave Airlie
  */
-#ifndef RADEON_FIXED_H
-#define RADEON_FIXED_H
+#ifndef DRM_FIXED_H
+#define DRM_FIXED_H
 
-typedef union rfixed {
+typedef union dfixed {
        u32 full;
 } fixed20_12;
 
 
-#define rfixed_const(A) (u32)(((A) << 12))/*  + ((B + 0.000122)*4096)) */
-#define rfixed_const_half(A) (u32)(((A) << 12) + 2048)
-#define rfixed_const_666(A) (u32)(((A) << 12) + 2731)
-#define rfixed_const_8(A) (u32)(((A) << 12) + 3277)
-#define rfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12)
-#define fixed_init(A) { .full = rfixed_const((A)) }
-#define fixed_init_half(A) { .full = rfixed_const_half((A)) }
-#define rfixed_trunc(A) ((A).full >> 12)
+#define dfixed_const(A) (u32)(((A) << 12))/*  + ((B + 0.000122)*4096)) */
+#define dfixed_const_half(A) (u32)(((A) << 12) + 2048)
+#define dfixed_const_666(A) (u32)(((A) << 12) + 2731)
+#define dfixed_const_8(A) (u32)(((A) << 12) + 3277)
+#define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12)
+#define dfixed_init(A) { .full = dfixed_const((A)) }
+#define dfixed_init_half(A) { .full = dfixed_const_half((A)) }
+#define dfixed_trunc(A) ((A).full >> 12)
 
-static inline u32 rfixed_floor(fixed20_12 A)
+static inline u32 dfixed_floor(fixed20_12 A)
 {
-       u32 non_frac = rfixed_trunc(A);
+       u32 non_frac = dfixed_trunc(A);
 
-       return rfixed_const(non_frac);
+       return dfixed_const(non_frac);
 }
 
-static inline u32 rfixed_ceil(fixed20_12 A)
+static inline u32 dfixed_ceil(fixed20_12 A)
 {
-       u32 non_frac = rfixed_trunc(A);
+       u32 non_frac = dfixed_trunc(A);
 
-       if (A.full > rfixed_const(non_frac))
-               return rfixed_const(non_frac + 1);
+       if (A.full > dfixed_const(non_frac))
+               return dfixed_const(non_frac + 1);
        else
-               return rfixed_const(non_frac);
+               return dfixed_const(non_frac);
 }
 
-static inline u32 rfixed_div(fixed20_12 A, fixed20_12 B)
+static inline u32 dfixed_div(fixed20_12 A, fixed20_12 B)
 {
        u64 tmp = ((u64)A.full << 13);