From owner-freebsd-hackers@FreeBSD.ORG Sun Aug 25 12:51:26 2013 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F2D9F54A; Sun, 25 Aug 2013 12:51:25 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-qa0-x234.google.com (mail-qa0-x234.google.com [IPv6:2607:f8b0:400d:c00::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A35FD2C40; Sun, 25 Aug 2013 12:51:25 +0000 (UTC) Received: by mail-qa0-f52.google.com with SMTP id l18so474680qak.4 for ; Sun, 25 Aug 2013 05:51:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=3vJJAUnpL99nThqHiqSkK4tS7mw64j/P3K75r5YVWII=; b=Mj9RHmq4yWDmXlNS7mkXTXb2ZfkJMk8T2ZrUp238/P8sqwI+TVDWjqQLRCNapdHSmI 9OuXUzkiu77InH0cH15h7/vs+eodrVFZ0QV3xj20vMhuijTokb7V9DX2RrmaRkDkPvKy QY7Zp+eVjYj/WtU7iAs66qyYzc7Z74th4jGjrtO+JaZX9AR+Da8cR2QT5RBz+QsLnVSe jueHtqapIJCsW9SEAOKdg4vhX6IL0CAV/K2qQ/tvn1ch2acGTuMaGGBrFfObs93rzkNR /WS+TsGZPUMxlVgvbnOO888rch/CllSv1ykI/h51NLZ9TPutQanoD5lWRK/EFv6X8jOp AlDg== MIME-Version: 1.0 X-Received: by 10.49.62.3 with SMTP id u3mr11080852qer.6.1377435084885; Sun, 25 Aug 2013 05:51:24 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.224.128.70 with HTTP; Sun, 25 Aug 2013 05:51:24 -0700 (PDT) In-Reply-To: <201308251227.r7PCRGog067825@svn.freebsd.org> References: <201308251227.r7PCRGog067825@svn.freebsd.org> Date: Sun, 25 Aug 2013 05:51:24 -0700 X-Google-Sender-Auth: 79w5bHKBHR1VyvC0wY-sXF8KTT0 Message-ID: Subject: Re: svn commit: r254853 - head/sys/dev/drm2 From: Adrian Chadd To: Jean-Sebastien Pedron Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: "freebsd-hackers@freebsd.org" X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Aug 2013 12:51:26 -0000 Hi! I'd just like to publicly thank you for all your hard work on improving the DRM2 support. This is something that's been sorely lacking lately. So, thank you! -adrian On 25 August 2013 05:27, Jean-Sebastien Pedron wrote: > Author: dumbbell > Date: Sun Aug 25 12:27:15 2013 > New Revision: 254853 > URL: http://svnweb.freebsd.org/changeset/base/254853 > > Log: > drm: Import drm_fixed.h from Linux 3.8 > > Added: > head/sys/dev/drm2/drm_fixed.h (contents, props changed) > > Added: head/sys/dev/drm2/drm_fixed.h > > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sys/dev/drm2/drm_fixed.h Sun Aug 25 12:27:15 2013 > (r254853) > @@ -0,0 +1,72 @@ > +/* > + * Copyright 2009 Red Hat Inc. > + * > + * Permission is hereby granted, free of charge, to any person obtaining a > + * copy of this software and associated documentation files (the > "Software"), > + * to deal in the Software without restriction, including without > limitation > + * the rights to use, copy, modify, merge, publish, distribute, > sublicense, > + * and/or sell copies of the Software, and to permit persons to whom the > + * Software is furnished to do so, subject to the following conditions: > + * > + * The above copyright notice and this permission notice shall be > included in > + * all copies or substantial portions of the Software. > + * > + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, > EXPRESS OR > + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF > MERCHANTABILITY, > + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT > SHALL > + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES > OR > + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, > + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR > + * OTHER DEALINGS IN THE SOFTWARE. > + * > + * Authors: Dave Airlie > + */ > + > +#include > +__FBSDID("$FreeBSD$"); > + > +#ifndef DRM_FIXED_H > +#define DRM_FIXED_H > + > +typedef union dfixed { > + u32 full; > +} fixed20_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) > +#define dfixed_frac(A) ((A).full & ((1 << 12) - 1)) > + > +static inline u32 dfixed_floor(fixed20_12 A) > +{ > + u32 non_frac = dfixed_trunc(A); > + > + return dfixed_const(non_frac); > +} > + > +static inline u32 dfixed_ceil(fixed20_12 A) > +{ > + u32 non_frac = dfixed_trunc(A); > + > + if (A.full > dfixed_const(non_frac)) > + return dfixed_const(non_frac + 1); > + else > + return dfixed_const(non_frac); > +} > + > +static inline u32 dfixed_div(fixed20_12 A, fixed20_12 B) > +{ > + u64 tmp = ((u64)A.full << 13); > + > + do_div(tmp, B.full); > + tmp += 1; > + tmp /= 2; > + return lower_32_bits(tmp); > +} > +#endif >