Two hda_verb.h files: Add more comments.
[coreboot.git] / src / arch / i386 / boot / coreboot_table.c
index 6d5912328235b0c1ac29540cc3a9b2035bf83e1f..484340c96ac26733498cfe6fc3329c422b45a3eb 100644 (file)
@@ -1,8 +1,8 @@
 /*
  * This file is part of the coreboot project.
- * 
+ *
  * Copyright (C) 2003-2004 Eric Biederman
- * Copyright (C) 2005-2009 coresystems GmbH
+ * Copyright (C) 2005-2010 coresystems GmbH
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
 #include <ip_checksum.h>
 #include <boot/tables.h>
 #include <boot/coreboot_tables.h>
-#include "coreboot_table.h"
+#include <arch/coreboot_tables.h>
 #include <string.h>
 #include <version.h>
 #include <device/device.h>
 #include <stdlib.h>
+#if (CONFIG_USE_OPTION_TABLE == 1)
+#include <option_table.h>
+#endif
 
 static struct lb_header *lb_table_init(unsigned long addr)
 {
@@ -65,11 +68,13 @@ static struct lb_record *lb_last_record(struct lb_header *header)
        return rec;
 }
 
+#if 0
 static struct lb_record *lb_next_record(struct lb_record *rec)
 {
-       rec = (void *)(((char *)rec) + rec->size);      
+       rec = (void *)(((char *)rec) + rec->size);
        return rec;
 }
+#endif
 
 static struct lb_record *lb_new_record(struct lb_header *header)
 {
@@ -99,7 +104,7 @@ static struct lb_memory *lb_memory(struct lb_header *header)
 
 static struct lb_serial *lb_serial(struct lb_header *header)
 {
-#if defined(CONFIG_TTYS0_BASE)
+#if CONFIG_CONSOLE_SERIAL8250
        struct lb_record *rec;
        struct lb_serial *serial;
        rec = lb_new_record(header);
@@ -126,27 +131,31 @@ static void add_console(struct lb_header *header, u16 consoletype)
 
 static void lb_console(struct lb_header *header)
 {
-#ifdef CONFIG_CONSOLE_SERIAL8250
+#if CONFIG_CONSOLE_SERIAL8250
        add_console(header, LB_TAG_CONSOLE_SERIAL8250);
 #endif
-#ifdef CONFIG_CONSOLE_VGA
-       add_console(header, LB_TAG_CONSOLE_VGA);
-#endif
-#ifdef CONFIG_CONSOLE_BTEXT
-       add_console(header, LB_TAG_CONSOLE_BTEXT);
-#endif
-#ifdef CONFIG_CONSOLE_LOGBUF
+#if CONFIG_CONSOLE_LOGBUF
        add_console(header, LB_TAG_CONSOLE_LOGBUF);
 #endif
-#ifdef CONFIG_CONSOLE_SROM
-       add_console(header, LB_TAG_CONSOLE_SROM);
-#endif
-#ifdef CONFIG_USBDEBUG_DIRECT
+#if CONFIG_USBDEBUG
        add_console(header, LB_TAG_CONSOLE_EHCI);
 #endif
 }
 
-struct lb_mainboard *lb_mainboard(struct lb_header *header)
+static void lb_framebuffer(struct lb_header *header)
+{
+#if defined(CONFIG_BOOTSPLASH) && CONFIG_BOOTSPLASH && CONFIG_COREBOOT_KEEP_FRAMEBUFFER
+       void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
+
+       struct lb_framebuffer *framebuffer;
+       framebuffer = (struct lb_framebuffer *)lb_new_record(header);
+       framebuffer->tag = LB_TAG_FRAMEBUFFER;
+       framebuffer->size = sizeof(*framebuffer);
+       fill_lb_framebuffer(framebuffer);
+#endif
+}
+
+static struct lb_mainboard *lb_mainboard(struct lb_header *header)
 {
        struct lb_record *rec;
        struct lb_mainboard *mainboard;
@@ -155,7 +164,7 @@ struct lb_mainboard *lb_mainboard(struct lb_header *header)
        mainboard->tag = LB_TAG_MAINBOARD;
 
        mainboard->size = (sizeof(*mainboard) +
-               strlen(mainboard_vendor) + 1 + 
+               strlen(mainboard_vendor) + 1 +
                strlen(mainboard_part_number) + 1 +
                3) & ~3;
 
@@ -170,6 +179,7 @@ struct lb_mainboard *lb_mainboard(struct lb_header *header)
        return mainboard;
 }
 
+#if (CONFIG_USE_OPTION_TABLE == 1)
 static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
 {
        struct lb_record *rec;
@@ -180,13 +190,14 @@ static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
 
        cmos_checksum->size = (sizeof(*cmos_checksum));
 
-       cmos_checksum->range_start = CONFIG_LB_CKS_RANGE_START * 8;
-       cmos_checksum->range_end = ( CONFIG_LB_CKS_RANGE_END * 8 ) + 7;
-       cmos_checksum->location = CONFIG_LB_CKS_LOC * 8;
+       cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
+       cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
+       cmos_checksum->location = LB_CKS_LOC * 8;
        cmos_checksum->type = CHECKSUM_PCBIOS;
-       
+
        return cmos_checksum;
 }
+#endif
 
 static void lb_strings(struct lb_header *header)
 {
@@ -218,6 +229,7 @@ static void lb_strings(struct lb_header *header)
 
 }
 
+#if CONFIG_WRITE_HIGH_TABLES == 1
 static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
 {
        struct lb_record *rec;
@@ -229,6 +241,7 @@ static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header
        forward->forward = (uint64_t)(unsigned long)next_header;
        return forward;
 }
+#endif
 
 void lb_memory_range(struct lb_memory *mem,
        uint32_t type, uint64_t start, uint64_t size)
@@ -288,7 +301,7 @@ static unsigned long lb_table_fini(struct lb_header *head, int fixup)
        head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
        head->header_checksum = 0;
        head->header_checksum = compute_ip_checksum(head, sizeof(*head));
-       printk_debug("Wrote coreboot table at: %p - %p  checksum %x\n",
+       printk(BIOS_DEBUG, "Wrote coreboot table at: %p - %p  checksum %x\n",
                head, rec, head->table_checksum);
        return (unsigned long)rec;
 }
@@ -298,7 +311,7 @@ static void lb_cleanup_memory_ranges(struct lb_memory *mem)
        int entries;
        int i, j;
        entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
-       
+
        /* Sort the lb memory ranges */
        for(i = 0; i < entries; i++) {
                uint64_t entry_start = unpack_lb64(mem->map[i].start);
@@ -335,17 +348,17 @@ static void lb_cleanup_memory_ranges(struct lb_memory *mem)
                        mem->map[i].size  = pack_lb64(end - start);
 
                        /* Delete the entry I have merged with */
-                       memmove(&mem->map[i + 1], &mem->map[i + 2], 
+                       memmove(&mem->map[i + 1], &mem->map[i + 2],
                                ((entries - i - 2) * sizeof(mem->map[0])));
                        mem->size -= sizeof(mem->map[0]);
                        entries -= 1;
                        /* See if I can merge with the next entry as well */
-                       i -= 1; 
+                       i -= 1;
                }
        }
 }
 
-static void lb_remove_memory_range(struct lb_memory *mem, 
+static void lb_remove_memory_range(struct lb_memory *mem,
        uint64_t start, uint64_t size)
 {
        uint64_t end;
@@ -361,16 +374,16 @@ static void lb_remove_memory_range(struct lb_memory *mem,
                uint64_t map_end   = map_start + unpack_lb64(mem->map[i].size);
                if ((start <= map_start) && (end >= map_end)) {
                        /* Remove the completely covered range */
-                       memmove(&mem->map[i], &mem->map[i + 1], 
+                       memmove(&mem->map[i], &mem->map[i + 1],
                                ((entries - i - 1) * sizeof(mem->map[0])));
                        mem->size -= sizeof(mem->map[0]);
                        entries -= 1;
                        /* Since the index will disappear revisit what will appear here */
-                       i -= 1; 
+                       i -= 1;
                }
                else if ((start > map_start) && (end < map_end)) {
                        /* Split the memory range */
-                       memmove(&mem->map[i + 1], &mem->map[i], 
+                       memmove(&mem->map[i + 1], &mem->map[i],
                                ((entries - i) * sizeof(mem->map[0])));
                        mem->size += sizeof(mem->map[0]);
                        entries += 1;
@@ -403,7 +416,37 @@ void lb_add_memory_range(struct lb_memory *mem,
        lb_cleanup_memory_ranges(mem);
 }
 
-/* Routines to extract part so the coreboot table or 
+static void lb_dump_memory_ranges(struct lb_memory *mem)
+{
+       int entries;
+       int i;
+       entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
+
+       printk(BIOS_DEBUG, "coreboot memory table:\n");
+       for(i = 0; i < entries; i++) {
+               uint64_t entry_start = unpack_lb64(mem->map[i].start);
+               uint64_t entry_size = unpack_lb64(mem->map[i].size);
+               const char *entry_type;
+
+               switch (mem->map[i].type) {
+               case LB_MEM_RAM: entry_type="RAM"; break;
+               case LB_MEM_RESERVED: entry_type="RESERVED"; break;
+               case LB_MEM_ACPI: entry_type="ACPI"; break;
+               case LB_MEM_NVS: entry_type="NVS"; break;
+               case LB_MEM_UNUSABLE: entry_type="UNUSABLE"; break;
+               case LB_MEM_VENDOR_RSVD: entry_type="VENDOR RESERVED"; break;
+               case LB_MEM_TABLE: entry_type="CONFIGURATION TABLES"; break;
+               default: entry_type="UNKNOWN!"; break;
+               }
+
+               printk(BIOS_DEBUG, "%2d. %016llx-%016llx: %s\n",
+                       i, entry_start, entry_start+entry_size-1, entry_type);
+
+       }
+}
+
+
+/* Routines to extract part so the coreboot table or
  * information from the coreboot table after we have written it.
  * Currently get_lb_mem relies on a global we can change the
  * implementaiton.
@@ -436,31 +479,45 @@ static struct lb_memory *build_lb_mem(struct lb_header *head)
        return mem;
 }
 
-#if CONFIG_HAVE_HIGH_TABLES == 1
+static void lb_add_rsvd_range(void *gp, struct device *dev, struct resource *res)
+{
+       struct lb_memory *mem = gp;
+       lb_add_memory_range(mem, LB_MEM_RESERVED, res->base, res->size);
+}
+
+static void add_lb_reserved(struct lb_memory *mem)
+{
+       /* Add reserved ranges */
+       search_global_resources(
+               IORESOURCE_MEM | IORESOURCE_RESERVE, IORESOURCE_MEM | IORESOURCE_RESERVE,
+               lb_add_rsvd_range, mem);
+}
+
+#if CONFIG_WRITE_HIGH_TABLES == 1
 extern uint64_t high_tables_base, high_tables_size;
 #endif
 
-unsigned long write_coreboot_table( 
-       unsigned long low_table_start, unsigned long low_table_end, 
+unsigned long write_coreboot_table(
+       unsigned long low_table_start, unsigned long low_table_end,
        unsigned long rom_table_start, unsigned long rom_table_end)
 {
        struct lb_header *head;
        struct lb_memory *mem;
 
-#if CONFIG_HAVE_HIGH_TABLES == 1
-       printk_debug("Writing high table forward entry at 0x%08lx\n",
+#if CONFIG_WRITE_HIGH_TABLES == 1
+       printk(BIOS_DEBUG, "Writing high table forward entry at 0x%08lx\n",
                        low_table_end);
        head = lb_table_init(low_table_end);
        lb_forward(head, (struct lb_header*)rom_table_end);
 
        low_table_end = (unsigned long) lb_table_fini(head, 0);
-       printk_debug("New low_table_end: 0x%08lx\n", low_table_end);
-       printk_debug("Now going to write high coreboot table at 0x%08lx\n",
+       printk(BIOS_DEBUG, "New low_table_end: 0x%08lx\n", low_table_end);
+       printk(BIOS_DEBUG, "Now going to write high coreboot table at 0x%08lx\n",
                        rom_table_end);
-       
+
        head = lb_table_init(rom_table_end);
        rom_table_end = (unsigned long)head;
-       printk_debug("rom_table_end = 0x%08lx\n", rom_table_end);
+       printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
 #else
        if(low_table_end > (0x1000 - sizeof(struct lb_header))) { /* after 4K */
                /* We need to put lbtable on  to [0xf0000,0x100000) */
@@ -471,51 +528,54 @@ unsigned long write_coreboot_table(
                low_table_end = (unsigned long)head;
        }
 #endif
-       printk_debug("Adjust low_table_end from 0x%08lx to ", low_table_end);
+
+       printk(BIOS_DEBUG, "Adjust low_table_end from 0x%08lx to ", low_table_end);
        low_table_end += 0xfff; // 4K aligned
        low_table_end &= ~0xfff;
-       printk_debug("0x%08lx \n", low_table_end);
+       printk(BIOS_DEBUG, "0x%08lx \n", low_table_end);
 
        /* The Linux kernel assumes this region is reserved */
-       printk_debug("Adjust rom_table_end from 0x%08lx to ", rom_table_end);
+       printk(BIOS_DEBUG, "Adjust rom_table_end from 0x%08lx to ", rom_table_end);
        rom_table_end += 0xffff; // 64K align
        rom_table_end &= ~0xffff;
-       printk_debug("0x%08lx \n", rom_table_end);
+       printk(BIOS_DEBUG, "0x%08lx \n", rom_table_end);
 
-#if (CONFIG_HAVE_OPTION_TABLE == 1) 
+#if (CONFIG_USE_OPTION_TABLE == 1)
        {
-               struct lb_record *rec_dest, *rec_src;
-               /* Write the option config table... */
-               rec_dest = lb_new_record(head);
-               rec_src = (struct lb_record *)(void *)&option_table;
-               memcpy(rec_dest,  rec_src, rec_src->size);
+               struct lb_record *rec_dest = lb_new_record(head);
+               /* Copy the option config table, it's already a lb_record... */
+               memcpy(rec_dest,  &option_table, option_table.size);
                /* Create cmos checksum entry in coreboot table */
                lb_cmos_checksum(head);
        }
 #endif
        /* Record where RAM is located */
        mem = build_lb_mem(head);
-       
+
        /* Record the mptable and the the lb_table (This will be adjusted later) */
-       lb_add_memory_range(mem, LB_MEM_TABLE, 
+       lb_add_memory_range(mem, LB_MEM_TABLE,
                low_table_start, low_table_end - low_table_start);
 
        /* Record the pirq table, acpi tables, and maybe the mptable */
        lb_add_memory_range(mem, LB_MEM_TABLE,
                rom_table_start, rom_table_end-rom_table_start);
 
-#if CONFIG_HAVE_HIGH_TABLES == 1
-       printk_debug("Adding high table area\n");
+#if CONFIG_WRITE_HIGH_TABLES == 1
+       printk(BIOS_DEBUG, "Adding high table area\n");
        // should this be LB_MEM_ACPI?
        lb_add_memory_range(mem, LB_MEM_TABLE,
                high_tables_base, high_tables_size);
 #endif
 
+       /* Add reserved regions */
+       add_lb_reserved(mem);
+
 #if (CONFIG_HAVE_MAINBOARD_RESOURCES == 1)
        add_mainboard_resources(mem);
 #endif
 
+       lb_dump_memory_ranges(mem);
+
        /* Note:
         * I assume that there is always memory at immediately after
         * the low_table_end.  This means that after I setup the coreboot table.
@@ -531,8 +591,10 @@ unsigned long write_coreboot_table(
        lb_console(head);
        /* Record our various random string information */
        lb_strings(head);
+       /* Record our framebuffer */
+       lb_framebuffer(head);
 
        /* Remember where my valid memory ranges are */
        return lb_table_fini(head, 1);
-       
+
 }