]> git.saurik.com Git - apple/xnu.git/blobdiff - pexpert/i386/fakePPCDeviceTree.c
xnu-344.21.74.tar.gz
[apple/xnu.git] / pexpert / i386 / fakePPCDeviceTree.c
index fd767a69bdde425dfc75984ff5e3ad22aff2316b..0fae65b2a5453d6ff6a04bfd085209cfb814e16b 100644 (file)
@@ -3,19 +3,22 @@
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * The contents of this file constitute Original Code as defined in and
- * are subject to the Apple Public Source License Version 1.1 (the
- * "License").  You may not use this file except in compliance with the
- * License.  Please obtain a copy of the License at
- * http://www.apple.com/publicsource and read it before using this file.
+ * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
  * 
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * This file contains Original Code and/or Modifications of Original Code
+ * as defined in and that are subject to the Apple Public Source License
+ * Version 2.0 (the 'License'). You may not use this file except in
+ * compliance with the License. Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this
+ * file.
+ * 
+ * The Original Code and all software distributed under the License are
+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
- * License for the specific language governing rights and limitations
- * under the License.
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
+ * Please see the License for the specific language governing rights and
+ * limitations under the License.
  * 
  * @APPLE_LICENSE_HEADER_END@
  */
 #include "fakePPCStructs.h"
 
 boot_args fakePPCBootArgs = {
-       0, // Revision
-        kBootArgsVersion, // Version
-        "",     // CommandLine
-        0,      // PhysicalDRAM
-        0,      // machine_type
-        0,      // deviceTreeP
-        0,      // deviceTreeLength
-        0,      // topOfKernelData
+    0,                // Revision
+    kBootArgsVersion, // Version
+    "",               // CommandLine
+    0,                // PhysicalDRAM
+    0,                // machine_type
+    0,                // deviceTreeP
+    0,                // deviceTreeLength
+    0,                // topOfKernelData
 };
 
-void * createdt(dt_init *template, long *retSize)
+void * createdt(dt_init * template, long * retSize)
 {
-    dt_init *  next;
-    int        size, allocSize;
+    dt_init *    next;
+    int          size, allocSize;
     vm_address_t out, saveout;
-    void *     source;
+    void *       source;
     
     // calc size of expanded data
-    for( next = template, allocSize = 0;
-       next;
-       next++) {
-
-       if( next->nodeInit.zero == 0) {
-           if( next->nodeInit.nProps == 0)
-               break;
-           allocSize += 2 * sizeof( long);
-       } else
-           allocSize += (32 + 4 + 3 + next->propInit.length) & (-4);
+    for ( next = template, allocSize = 0;
+          next;
+          next++ )
+    {
+        if ( next->nodeInit.zero == 0 )
+        {
+            if( next->nodeInit.nProps == 0) break;
+            allocSize += 2 * sizeof( long);
+        }
+        else if ( next->dataInit.one == 1 )
+        {
+            allocSize += *(next->dataInit.length);
+        }
+        else
+        {
+            allocSize += (32 + 4 + 3 + next->propInit.length) & (-4);
+        }
     }
-    saveout = out = kalloc( allocSize);
+    saveout = out = kalloc(allocSize);
+    if ( out == 0 ) return 0;
 
     // copy out
-    for( next = template;
-       next;
-       next++) {
-
-       if( next->nodeInit.zero == 0) {
-
-           if( next->nodeInit.nProps == 0)
-               break;
-           source = &next->nodeInit.nProps;
-           size = 2 * sizeof( long);
-
-       } else {
-
-           bcopy( next->propInit.name, out, 32);
-           out += 32;
-           size = next->propInit.length;
-           *(long *)out = size;
-           out += sizeof( long);
-           if( size == 4)
-               source = &next->propInit.value;
-           else {
-               source = next->propInit.value;
-               size = (size + 3) & (-4);
-           }
-       }
-        bcopy( source, out, size);
-       out += size;
+    for ( next = template; next; next++)
+    {
+        if ( next->nodeInit.zero == 0 )
+        {
+            if ( next->nodeInit.nProps == 0 ) break;
+            source = &next->nodeInit.nProps;
+            size = 2 * sizeof( long);
+        }
+        else if ( next->dataInit.one == 1 )
+        {
+            *(next->dataInit.address) = out;
+            source = 0;
+            size   = *(next->dataInit.length);
+        }
+        else
+        {
+            bcopy( next->propInit.name, (void *)out, 32);
+            out += 32;
+            size = next->propInit.length;
+            *(long *)out = size;
+            out += sizeof(long);
+            if ( size == 4 )
+                source = &next->propInit.value;
+            else {
+                source = next->propInit.value;
+                size = (size + 3) & (-4);
+            }
+        }
+        if ( source )
+            bcopy(source, (void *)out, size);
+        else
+            bzero((void *)out, size);
+        out += size;
     }
 
     if( allocSize != (out - saveout))
         printf("WARNING: DT corrupt (%x)\n", (out - saveout) - allocSize);
 
     *retSize = allocSize;
-    return( (void *)saveout);
+    return( (void *)saveout );
 }
 
 unsigned char *nptr;