xref: /minix3/minix/drivers/power/acpi/utilities/utmath.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc /*******************************************************************************
2*433d6423SLionel Sambuc  *
3*433d6423SLionel Sambuc  * Module Name: utmath - Integer math support routines
4*433d6423SLionel Sambuc  *
5*433d6423SLionel Sambuc  ******************************************************************************/
6*433d6423SLionel Sambuc 
7*433d6423SLionel Sambuc /******************************************************************************
8*433d6423SLionel Sambuc  *
9*433d6423SLionel Sambuc  * 1. Copyright Notice
10*433d6423SLionel Sambuc  *
11*433d6423SLionel Sambuc  * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
12*433d6423SLionel Sambuc  * All rights reserved.
13*433d6423SLionel Sambuc  *
14*433d6423SLionel Sambuc  * 2. License
15*433d6423SLionel Sambuc  *
16*433d6423SLionel Sambuc  * 2.1. This is your license from Intel Corp. under its intellectual property
17*433d6423SLionel Sambuc  * rights.  You may have additional license terms from the party that provided
18*433d6423SLionel Sambuc  * you this software, covering your right to use that party's intellectual
19*433d6423SLionel Sambuc  * property rights.
20*433d6423SLionel Sambuc  *
21*433d6423SLionel Sambuc  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22*433d6423SLionel Sambuc  * copy of the source code appearing in this file ("Covered Code") an
23*433d6423SLionel Sambuc  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24*433d6423SLionel Sambuc  * base code distributed originally by Intel ("Original Intel Code") to copy,
25*433d6423SLionel Sambuc  * make derivatives, distribute, use and display any portion of the Covered
26*433d6423SLionel Sambuc  * Code in any form, with the right to sublicense such rights; and
27*433d6423SLionel Sambuc  *
28*433d6423SLionel Sambuc  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29*433d6423SLionel Sambuc  * license (with the right to sublicense), under only those claims of Intel
30*433d6423SLionel Sambuc  * patents that are infringed by the Original Intel Code, to make, use, sell,
31*433d6423SLionel Sambuc  * offer to sell, and import the Covered Code and derivative works thereof
32*433d6423SLionel Sambuc  * solely to the minimum extent necessary to exercise the above copyright
33*433d6423SLionel Sambuc  * license, and in no event shall the patent license extend to any additions
34*433d6423SLionel Sambuc  * to or modifications of the Original Intel Code.  No other license or right
35*433d6423SLionel Sambuc  * is granted directly or by implication, estoppel or otherwise;
36*433d6423SLionel Sambuc  *
37*433d6423SLionel Sambuc  * The above copyright and patent license is granted only if the following
38*433d6423SLionel Sambuc  * conditions are met:
39*433d6423SLionel Sambuc  *
40*433d6423SLionel Sambuc  * 3. Conditions
41*433d6423SLionel Sambuc  *
42*433d6423SLionel Sambuc  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43*433d6423SLionel Sambuc  * Redistribution of source code of any substantial portion of the Covered
44*433d6423SLionel Sambuc  * Code or modification with rights to further distribute source must include
45*433d6423SLionel Sambuc  * the above Copyright Notice, the above License, this list of Conditions,
46*433d6423SLionel Sambuc  * and the following Disclaimer and Export Compliance provision.  In addition,
47*433d6423SLionel Sambuc  * Licensee must cause all Covered Code to which Licensee contributes to
48*433d6423SLionel Sambuc  * contain a file documenting the changes Licensee made to create that Covered
49*433d6423SLionel Sambuc  * Code and the date of any change.  Licensee must include in that file the
50*433d6423SLionel Sambuc  * documentation of any changes made by any predecessor Licensee.  Licensee
51*433d6423SLionel Sambuc  * must include a prominent statement that the modification is derived,
52*433d6423SLionel Sambuc  * directly or indirectly, from Original Intel Code.
53*433d6423SLionel Sambuc  *
54*433d6423SLionel Sambuc  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55*433d6423SLionel Sambuc  * Redistribution of source code of any substantial portion of the Covered
56*433d6423SLionel Sambuc  * Code or modification without rights to further distribute source must
57*433d6423SLionel Sambuc  * include the following Disclaimer and Export Compliance provision in the
58*433d6423SLionel Sambuc  * documentation and/or other materials provided with distribution.  In
59*433d6423SLionel Sambuc  * addition, Licensee may not authorize further sublicense of source of any
60*433d6423SLionel Sambuc  * portion of the Covered Code, and must include terms to the effect that the
61*433d6423SLionel Sambuc  * license from Licensee to its licensee is limited to the intellectual
62*433d6423SLionel Sambuc  * property embodied in the software Licensee provides to its licensee, and
63*433d6423SLionel Sambuc  * not to intellectual property embodied in modifications its licensee may
64*433d6423SLionel Sambuc  * make.
65*433d6423SLionel Sambuc  *
66*433d6423SLionel Sambuc  * 3.3. Redistribution of Executable. Redistribution in executable form of any
67*433d6423SLionel Sambuc  * substantial portion of the Covered Code or modification must reproduce the
68*433d6423SLionel Sambuc  * above Copyright Notice, and the following Disclaimer and Export Compliance
69*433d6423SLionel Sambuc  * provision in the documentation and/or other materials provided with the
70*433d6423SLionel Sambuc  * distribution.
71*433d6423SLionel Sambuc  *
72*433d6423SLionel Sambuc  * 3.4. Intel retains all right, title, and interest in and to the Original
73*433d6423SLionel Sambuc  * Intel Code.
74*433d6423SLionel Sambuc  *
75*433d6423SLionel Sambuc  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76*433d6423SLionel Sambuc  * Intel shall be used in advertising or otherwise to promote the sale, use or
77*433d6423SLionel Sambuc  * other dealings in products derived from or relating to the Covered Code
78*433d6423SLionel Sambuc  * without prior written authorization from Intel.
79*433d6423SLionel Sambuc  *
80*433d6423SLionel Sambuc  * 4. Disclaimer and Export Compliance
81*433d6423SLionel Sambuc  *
82*433d6423SLionel Sambuc  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83*433d6423SLionel Sambuc  * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84*433d6423SLionel Sambuc  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
85*433d6423SLionel Sambuc  * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
86*433d6423SLionel Sambuc  * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
87*433d6423SLionel Sambuc  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
88*433d6423SLionel Sambuc  * PARTICULAR PURPOSE.
89*433d6423SLionel Sambuc  *
90*433d6423SLionel Sambuc  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91*433d6423SLionel Sambuc  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92*433d6423SLionel Sambuc  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93*433d6423SLionel Sambuc  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94*433d6423SLionel Sambuc  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95*433d6423SLionel Sambuc  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
96*433d6423SLionel Sambuc  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
97*433d6423SLionel Sambuc  * LIMITED REMEDY.
98*433d6423SLionel Sambuc  *
99*433d6423SLionel Sambuc  * 4.3. Licensee shall not export, either directly or indirectly, any of this
100*433d6423SLionel Sambuc  * software or system incorporating such software without first obtaining any
101*433d6423SLionel Sambuc  * required license or other approval from the U. S. Department of Commerce or
102*433d6423SLionel Sambuc  * any other agency or department of the United States Government.  In the
103*433d6423SLionel Sambuc  * event Licensee exports any such software from the United States or
104*433d6423SLionel Sambuc  * re-exports any such software from a foreign destination, Licensee shall
105*433d6423SLionel Sambuc  * ensure that the distribution and export/re-export of the software is in
106*433d6423SLionel Sambuc  * compliance with all laws, regulations, orders, or other restrictions of the
107*433d6423SLionel Sambuc  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108*433d6423SLionel Sambuc  * any of its subsidiaries will export/re-export any technical data, process,
109*433d6423SLionel Sambuc  * software, or service, directly or indirectly, to any country for which the
110*433d6423SLionel Sambuc  * United States government or any agency thereof requires an export license,
111*433d6423SLionel Sambuc  * other governmental approval, or letter of assurance, without first obtaining
112*433d6423SLionel Sambuc  * such license, approval or letter.
113*433d6423SLionel Sambuc  *
114*433d6423SLionel Sambuc  *****************************************************************************/
115*433d6423SLionel Sambuc 
116*433d6423SLionel Sambuc 
117*433d6423SLionel Sambuc #define __UTMATH_C__
118*433d6423SLionel Sambuc 
119*433d6423SLionel Sambuc #include "acpi.h"
120*433d6423SLionel Sambuc #include "accommon.h"
121*433d6423SLionel Sambuc 
122*433d6423SLionel Sambuc 
123*433d6423SLionel Sambuc #define _COMPONENT          ACPI_UTILITIES
124*433d6423SLionel Sambuc         ACPI_MODULE_NAME    ("utmath")
125*433d6423SLionel Sambuc 
126*433d6423SLionel Sambuc /*
127*433d6423SLionel Sambuc  * Support for double-precision integer divide.  This code is included here
128*433d6423SLionel Sambuc  * in order to support kernel environments where the double-precision math
129*433d6423SLionel Sambuc  * library is not available.
130*433d6423SLionel Sambuc  */
131*433d6423SLionel Sambuc 
132*433d6423SLionel Sambuc #ifndef ACPI_USE_NATIVE_DIVIDE
133*433d6423SLionel Sambuc /*******************************************************************************
134*433d6423SLionel Sambuc  *
135*433d6423SLionel Sambuc  * FUNCTION:    AcpiUtShortDivide
136*433d6423SLionel Sambuc  *
137*433d6423SLionel Sambuc  * PARAMETERS:  Dividend            - 64-bit dividend
138*433d6423SLionel Sambuc  *              Divisor             - 32-bit divisor
139*433d6423SLionel Sambuc  *              OutQuotient         - Pointer to where the quotient is returned
140*433d6423SLionel Sambuc  *              OutRemainder        - Pointer to where the remainder is returned
141*433d6423SLionel Sambuc  *
142*433d6423SLionel Sambuc  * RETURN:      Status (Checks for divide-by-zero)
143*433d6423SLionel Sambuc  *
144*433d6423SLionel Sambuc  * DESCRIPTION: Perform a short (maximum 64 bits divided by 32 bits)
145*433d6423SLionel Sambuc  *              divide and modulo.  The result is a 64-bit quotient and a
146*433d6423SLionel Sambuc  *              32-bit remainder.
147*433d6423SLionel Sambuc  *
148*433d6423SLionel Sambuc  ******************************************************************************/
149*433d6423SLionel Sambuc 
150*433d6423SLionel Sambuc ACPI_STATUS
151*433d6423SLionel Sambuc AcpiUtShortDivide (
152*433d6423SLionel Sambuc     UINT64                  Dividend,
153*433d6423SLionel Sambuc     UINT32                  Divisor,
154*433d6423SLionel Sambuc     UINT64                  *OutQuotient,
155*433d6423SLionel Sambuc     UINT32                  *OutRemainder)
156*433d6423SLionel Sambuc {
157*433d6423SLionel Sambuc     UINT64_OVERLAY          DividendOvl;
158*433d6423SLionel Sambuc     UINT64_OVERLAY          Quotient;
159*433d6423SLionel Sambuc     UINT32                  Remainder32;
160*433d6423SLionel Sambuc 
161*433d6423SLionel Sambuc 
162*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE (UtShortDivide);
163*433d6423SLionel Sambuc 
164*433d6423SLionel Sambuc 
165*433d6423SLionel Sambuc     /* Always check for a zero divisor */
166*433d6423SLionel Sambuc 
167*433d6423SLionel Sambuc     if (Divisor == 0)
168*433d6423SLionel Sambuc     {
169*433d6423SLionel Sambuc         ACPI_ERROR ((AE_INFO, "Divide by zero"));
170*433d6423SLionel Sambuc         return_ACPI_STATUS (AE_AML_DIVIDE_BY_ZERO);
171*433d6423SLionel Sambuc     }
172*433d6423SLionel Sambuc 
173*433d6423SLionel Sambuc     DividendOvl.Full = Dividend;
174*433d6423SLionel Sambuc 
175*433d6423SLionel Sambuc     /*
176*433d6423SLionel Sambuc      * The quotient is 64 bits, the remainder is always 32 bits,
177*433d6423SLionel Sambuc      * and is generated by the second divide.
178*433d6423SLionel Sambuc      */
179*433d6423SLionel Sambuc     ACPI_DIV_64_BY_32 (0, DividendOvl.Part.Hi, Divisor,
180*433d6423SLionel Sambuc                        Quotient.Part.Hi, Remainder32);
181*433d6423SLionel Sambuc     ACPI_DIV_64_BY_32 (Remainder32, DividendOvl.Part.Lo, Divisor,
182*433d6423SLionel Sambuc                        Quotient.Part.Lo, Remainder32);
183*433d6423SLionel Sambuc 
184*433d6423SLionel Sambuc     /* Return only what was requested */
185*433d6423SLionel Sambuc 
186*433d6423SLionel Sambuc     if (OutQuotient)
187*433d6423SLionel Sambuc     {
188*433d6423SLionel Sambuc         *OutQuotient = Quotient.Full;
189*433d6423SLionel Sambuc     }
190*433d6423SLionel Sambuc     if (OutRemainder)
191*433d6423SLionel Sambuc     {
192*433d6423SLionel Sambuc         *OutRemainder = Remainder32;
193*433d6423SLionel Sambuc     }
194*433d6423SLionel Sambuc 
195*433d6423SLionel Sambuc     return_ACPI_STATUS (AE_OK);
196*433d6423SLionel Sambuc }
197*433d6423SLionel Sambuc 
198*433d6423SLionel Sambuc 
199*433d6423SLionel Sambuc /*******************************************************************************
200*433d6423SLionel Sambuc  *
201*433d6423SLionel Sambuc  * FUNCTION:    AcpiUtDivide
202*433d6423SLionel Sambuc  *
203*433d6423SLionel Sambuc  * PARAMETERS:  InDividend          - Dividend
204*433d6423SLionel Sambuc  *              InDivisor           - Divisor
205*433d6423SLionel Sambuc  *              OutQuotient         - Pointer to where the quotient is returned
206*433d6423SLionel Sambuc  *              OutRemainder        - Pointer to where the remainder is returned
207*433d6423SLionel Sambuc  *
208*433d6423SLionel Sambuc  * RETURN:      Status (Checks for divide-by-zero)
209*433d6423SLionel Sambuc  *
210*433d6423SLionel Sambuc  * DESCRIPTION: Perform a divide and modulo.
211*433d6423SLionel Sambuc  *
212*433d6423SLionel Sambuc  ******************************************************************************/
213*433d6423SLionel Sambuc 
214*433d6423SLionel Sambuc ACPI_STATUS
215*433d6423SLionel Sambuc AcpiUtDivide (
216*433d6423SLionel Sambuc     UINT64                  InDividend,
217*433d6423SLionel Sambuc     UINT64                  InDivisor,
218*433d6423SLionel Sambuc     UINT64                  *OutQuotient,
219*433d6423SLionel Sambuc     UINT64                  *OutRemainder)
220*433d6423SLionel Sambuc {
221*433d6423SLionel Sambuc     UINT64_OVERLAY          Dividend;
222*433d6423SLionel Sambuc     UINT64_OVERLAY          Divisor;
223*433d6423SLionel Sambuc     UINT64_OVERLAY          Quotient;
224*433d6423SLionel Sambuc     UINT64_OVERLAY          Remainder;
225*433d6423SLionel Sambuc     UINT64_OVERLAY          NormalizedDividend;
226*433d6423SLionel Sambuc     UINT64_OVERLAY          NormalizedDivisor;
227*433d6423SLionel Sambuc     UINT32                  Partial1;
228*433d6423SLionel Sambuc     UINT64_OVERLAY          Partial2;
229*433d6423SLionel Sambuc     UINT64_OVERLAY          Partial3;
230*433d6423SLionel Sambuc 
231*433d6423SLionel Sambuc 
232*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE (UtDivide);
233*433d6423SLionel Sambuc 
234*433d6423SLionel Sambuc 
235*433d6423SLionel Sambuc     /* Always check for a zero divisor */
236*433d6423SLionel Sambuc 
237*433d6423SLionel Sambuc     if (InDivisor == 0)
238*433d6423SLionel Sambuc     {
239*433d6423SLionel Sambuc         ACPI_ERROR ((AE_INFO, "Divide by zero"));
240*433d6423SLionel Sambuc         return_ACPI_STATUS (AE_AML_DIVIDE_BY_ZERO);
241*433d6423SLionel Sambuc     }
242*433d6423SLionel Sambuc 
243*433d6423SLionel Sambuc     Divisor.Full  = InDivisor;
244*433d6423SLionel Sambuc     Dividend.Full = InDividend;
245*433d6423SLionel Sambuc     if (Divisor.Part.Hi == 0)
246*433d6423SLionel Sambuc     {
247*433d6423SLionel Sambuc         /*
248*433d6423SLionel Sambuc          * 1) Simplest case is where the divisor is 32 bits, we can
249*433d6423SLionel Sambuc          * just do two divides
250*433d6423SLionel Sambuc          */
251*433d6423SLionel Sambuc         Remainder.Part.Hi = 0;
252*433d6423SLionel Sambuc 
253*433d6423SLionel Sambuc         /*
254*433d6423SLionel Sambuc          * The quotient is 64 bits, the remainder is always 32 bits,
255*433d6423SLionel Sambuc          * and is generated by the second divide.
256*433d6423SLionel Sambuc          */
257*433d6423SLionel Sambuc         ACPI_DIV_64_BY_32 (0, Dividend.Part.Hi, Divisor.Part.Lo,
258*433d6423SLionel Sambuc                            Quotient.Part.Hi, Partial1);
259*433d6423SLionel Sambuc         ACPI_DIV_64_BY_32 (Partial1, Dividend.Part.Lo, Divisor.Part.Lo,
260*433d6423SLionel Sambuc                            Quotient.Part.Lo, Remainder.Part.Lo);
261*433d6423SLionel Sambuc     }
262*433d6423SLionel Sambuc 
263*433d6423SLionel Sambuc     else
264*433d6423SLionel Sambuc     {
265*433d6423SLionel Sambuc         /*
266*433d6423SLionel Sambuc          * 2) The general case where the divisor is a full 64 bits
267*433d6423SLionel Sambuc          * is more difficult
268*433d6423SLionel Sambuc          */
269*433d6423SLionel Sambuc         Quotient.Part.Hi   = 0;
270*433d6423SLionel Sambuc         NormalizedDividend = Dividend;
271*433d6423SLionel Sambuc         NormalizedDivisor  = Divisor;
272*433d6423SLionel Sambuc 
273*433d6423SLionel Sambuc         /* Normalize the operands (shift until the divisor is < 32 bits) */
274*433d6423SLionel Sambuc 
275*433d6423SLionel Sambuc         do
276*433d6423SLionel Sambuc         {
277*433d6423SLionel Sambuc             ACPI_SHIFT_RIGHT_64 (NormalizedDivisor.Part.Hi,
278*433d6423SLionel Sambuc                                  NormalizedDivisor.Part.Lo);
279*433d6423SLionel Sambuc             ACPI_SHIFT_RIGHT_64 (NormalizedDividend.Part.Hi,
280*433d6423SLionel Sambuc                                  NormalizedDividend.Part.Lo);
281*433d6423SLionel Sambuc 
282*433d6423SLionel Sambuc         } while (NormalizedDivisor.Part.Hi != 0);
283*433d6423SLionel Sambuc 
284*433d6423SLionel Sambuc         /* Partial divide */
285*433d6423SLionel Sambuc 
286*433d6423SLionel Sambuc         ACPI_DIV_64_BY_32 (NormalizedDividend.Part.Hi,
287*433d6423SLionel Sambuc                            NormalizedDividend.Part.Lo,
288*433d6423SLionel Sambuc                            NormalizedDivisor.Part.Lo,
289*433d6423SLionel Sambuc                            Quotient.Part.Lo, Partial1);
290*433d6423SLionel Sambuc 
291*433d6423SLionel Sambuc         /*
292*433d6423SLionel Sambuc          * The quotient is always 32 bits, and simply requires adjustment.
293*433d6423SLionel Sambuc          * The 64-bit remainder must be generated.
294*433d6423SLionel Sambuc          */
295*433d6423SLionel Sambuc         Partial1      = Quotient.Part.Lo * Divisor.Part.Hi;
296*433d6423SLionel Sambuc         Partial2.Full = (UINT64) Quotient.Part.Lo * Divisor.Part.Lo;
297*433d6423SLionel Sambuc         Partial3.Full = (UINT64) Partial2.Part.Hi + Partial1;
298*433d6423SLionel Sambuc 
299*433d6423SLionel Sambuc         Remainder.Part.Hi = Partial3.Part.Lo;
300*433d6423SLionel Sambuc         Remainder.Part.Lo = Partial2.Part.Lo;
301*433d6423SLionel Sambuc 
302*433d6423SLionel Sambuc         if (Partial3.Part.Hi == 0)
303*433d6423SLionel Sambuc         {
304*433d6423SLionel Sambuc             if (Partial3.Part.Lo >= Dividend.Part.Hi)
305*433d6423SLionel Sambuc             {
306*433d6423SLionel Sambuc                 if (Partial3.Part.Lo == Dividend.Part.Hi)
307*433d6423SLionel Sambuc                 {
308*433d6423SLionel Sambuc                     if (Partial2.Part.Lo > Dividend.Part.Lo)
309*433d6423SLionel Sambuc                     {
310*433d6423SLionel Sambuc                         Quotient.Part.Lo--;
311*433d6423SLionel Sambuc                         Remainder.Full -= Divisor.Full;
312*433d6423SLionel Sambuc                     }
313*433d6423SLionel Sambuc                 }
314*433d6423SLionel Sambuc                 else
315*433d6423SLionel Sambuc                 {
316*433d6423SLionel Sambuc                     Quotient.Part.Lo--;
317*433d6423SLionel Sambuc                     Remainder.Full -= Divisor.Full;
318*433d6423SLionel Sambuc                 }
319*433d6423SLionel Sambuc             }
320*433d6423SLionel Sambuc 
321*433d6423SLionel Sambuc             Remainder.Full    = Remainder.Full - Dividend.Full;
322*433d6423SLionel Sambuc             Remainder.Part.Hi = (UINT32) -((INT32) Remainder.Part.Hi);
323*433d6423SLionel Sambuc             Remainder.Part.Lo = (UINT32) -((INT32) Remainder.Part.Lo);
324*433d6423SLionel Sambuc 
325*433d6423SLionel Sambuc             if (Remainder.Part.Lo)
326*433d6423SLionel Sambuc             {
327*433d6423SLionel Sambuc                 Remainder.Part.Hi--;
328*433d6423SLionel Sambuc             }
329*433d6423SLionel Sambuc         }
330*433d6423SLionel Sambuc     }
331*433d6423SLionel Sambuc 
332*433d6423SLionel Sambuc     /* Return only what was requested */
333*433d6423SLionel Sambuc 
334*433d6423SLionel Sambuc     if (OutQuotient)
335*433d6423SLionel Sambuc     {
336*433d6423SLionel Sambuc         *OutQuotient = Quotient.Full;
337*433d6423SLionel Sambuc     }
338*433d6423SLionel Sambuc     if (OutRemainder)
339*433d6423SLionel Sambuc     {
340*433d6423SLionel Sambuc         *OutRemainder = Remainder.Full;
341*433d6423SLionel Sambuc     }
342*433d6423SLionel Sambuc 
343*433d6423SLionel Sambuc     return_ACPI_STATUS (AE_OK);
344*433d6423SLionel Sambuc }
345*433d6423SLionel Sambuc 
346*433d6423SLionel Sambuc #else
347*433d6423SLionel Sambuc 
348*433d6423SLionel Sambuc /*******************************************************************************
349*433d6423SLionel Sambuc  *
350*433d6423SLionel Sambuc  * FUNCTION:    AcpiUtShortDivide, AcpiUtDivide
351*433d6423SLionel Sambuc  *
352*433d6423SLionel Sambuc  * PARAMETERS:  See function headers above
353*433d6423SLionel Sambuc  *
354*433d6423SLionel Sambuc  * DESCRIPTION: Native versions of the UtDivide functions. Use these if either
355*433d6423SLionel Sambuc  *              1) The target is a 64-bit platform and therefore 64-bit
356*433d6423SLionel Sambuc  *                 integer math is supported directly by the machine.
357*433d6423SLionel Sambuc  *              2) The target is a 32-bit or 16-bit platform, and the
358*433d6423SLionel Sambuc  *                 double-precision integer math library is available to
359*433d6423SLionel Sambuc  *                 perform the divide.
360*433d6423SLionel Sambuc  *
361*433d6423SLionel Sambuc  ******************************************************************************/
362*433d6423SLionel Sambuc 
363*433d6423SLionel Sambuc ACPI_STATUS
364*433d6423SLionel Sambuc AcpiUtShortDivide (
365*433d6423SLionel Sambuc     UINT64                  InDividend,
366*433d6423SLionel Sambuc     UINT32                  Divisor,
367*433d6423SLionel Sambuc     UINT64                  *OutQuotient,
368*433d6423SLionel Sambuc     UINT32                  *OutRemainder)
369*433d6423SLionel Sambuc {
370*433d6423SLionel Sambuc 
371*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE (UtShortDivide);
372*433d6423SLionel Sambuc 
373*433d6423SLionel Sambuc 
374*433d6423SLionel Sambuc     /* Always check for a zero divisor */
375*433d6423SLionel Sambuc 
376*433d6423SLionel Sambuc     if (Divisor == 0)
377*433d6423SLionel Sambuc     {
378*433d6423SLionel Sambuc         ACPI_ERROR ((AE_INFO, "Divide by zero"));
379*433d6423SLionel Sambuc         return_ACPI_STATUS (AE_AML_DIVIDE_BY_ZERO);
380*433d6423SLionel Sambuc     }
381*433d6423SLionel Sambuc 
382*433d6423SLionel Sambuc     /* Return only what was requested */
383*433d6423SLionel Sambuc 
384*433d6423SLionel Sambuc     if (OutQuotient)
385*433d6423SLionel Sambuc     {
386*433d6423SLionel Sambuc         *OutQuotient = InDividend / Divisor;
387*433d6423SLionel Sambuc     }
388*433d6423SLionel Sambuc     if (OutRemainder)
389*433d6423SLionel Sambuc     {
390*433d6423SLionel Sambuc         *OutRemainder = (UINT32) (InDividend % Divisor);
391*433d6423SLionel Sambuc     }
392*433d6423SLionel Sambuc 
393*433d6423SLionel Sambuc     return_ACPI_STATUS (AE_OK);
394*433d6423SLionel Sambuc }
395*433d6423SLionel Sambuc 
396*433d6423SLionel Sambuc ACPI_STATUS
397*433d6423SLionel Sambuc AcpiUtDivide (
398*433d6423SLionel Sambuc     UINT64                  InDividend,
399*433d6423SLionel Sambuc     UINT64                  InDivisor,
400*433d6423SLionel Sambuc     UINT64                  *OutQuotient,
401*433d6423SLionel Sambuc     UINT64                  *OutRemainder)
402*433d6423SLionel Sambuc {
403*433d6423SLionel Sambuc     ACPI_FUNCTION_TRACE (UtDivide);
404*433d6423SLionel Sambuc 
405*433d6423SLionel Sambuc 
406*433d6423SLionel Sambuc     /* Always check for a zero divisor */
407*433d6423SLionel Sambuc 
408*433d6423SLionel Sambuc     if (InDivisor == 0)
409*433d6423SLionel Sambuc     {
410*433d6423SLionel Sambuc         ACPI_ERROR ((AE_INFO, "Divide by zero"));
411*433d6423SLionel Sambuc         return_ACPI_STATUS (AE_AML_DIVIDE_BY_ZERO);
412*433d6423SLionel Sambuc     }
413*433d6423SLionel Sambuc 
414*433d6423SLionel Sambuc 
415*433d6423SLionel Sambuc     /* Return only what was requested */
416*433d6423SLionel Sambuc 
417*433d6423SLionel Sambuc     if (OutQuotient)
418*433d6423SLionel Sambuc     {
419*433d6423SLionel Sambuc         *OutQuotient = InDividend / InDivisor;
420*433d6423SLionel Sambuc     }
421*433d6423SLionel Sambuc     if (OutRemainder)
422*433d6423SLionel Sambuc     {
423*433d6423SLionel Sambuc         *OutRemainder = InDividend % InDivisor;
424*433d6423SLionel Sambuc     }
425*433d6423SLionel Sambuc 
426*433d6423SLionel Sambuc     return_ACPI_STATUS (AE_OK);
427*433d6423SLionel Sambuc }
428*433d6423SLionel Sambuc 
429*433d6423SLionel Sambuc #endif
430*433d6423SLionel Sambuc 
431*433d6423SLionel Sambuc 
432