/*1* Copyright 2009 Red Hat Inc.2*3* Permission is hereby granted, free of charge, to any person obtaining a4* copy of this software and associated documentation files (the "Software"),5* to deal in the Software without restriction, including without limitation6* the rights to use, copy, modify, merge, publish, distribute, sublicense,7* and/or sell copies of the Software, and to permit persons to whom the8* Software is furnished to do so, subject to the following conditions:9*10* The above copyright notice and this permission notice shall be included in11* all copies or substantial portions of the Software.12*13* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR14* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,15* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL16* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR17* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,18* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR19* OTHER DEALINGS IN THE SOFTWARE.20*21* Authors: Dave Airlie22*/23#ifndef DRM_FIXED_H24#define DRM_FIXED_H2526typedef union dfixed {27u32 full;28} fixed20_12;293031#define dfixed_const(A) (u32)(((A) << 12))/* + ((B + 0.000122)*4096)) */32#define dfixed_const_half(A) (u32)(((A) << 12) + 2048)33#define dfixed_const_666(A) (u32)(((A) << 12) + 2731)34#define dfixed_const_8(A) (u32)(((A) << 12) + 3277)35#define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12)36#define dfixed_init(A) { .full = dfixed_const((A)) }37#define dfixed_init_half(A) { .full = dfixed_const_half((A)) }38#define dfixed_trunc(A) ((A).full >> 12)3940static inline u32 dfixed_floor(fixed20_12 A)41{42u32 non_frac = dfixed_trunc(A);4344return dfixed_const(non_frac);45}4647static inline u32 dfixed_ceil(fixed20_12 A)48{49u32 non_frac = dfixed_trunc(A);5051if (A.full > dfixed_const(non_frac))52return dfixed_const(non_frac + 1);53else54return dfixed_const(non_frac);55}5657static inline u32 dfixed_div(fixed20_12 A, fixed20_12 B)58{59u64 tmp = ((u64)A.full << 13);6061do_div(tmp, B.full);62tmp += 1;63tmp /= 2;64return lower_32_bits(tmp);65}66#endif676869