diff options
56 files changed, 5898 insertions, 2387 deletions
diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..71494ea48 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,9 @@ +[submodule "roms/vgabios"] + path = roms/vgabios + url = ../vgabios.git +[submodule "roms/seabios"] + path = roms/seabios + url = ../seabios.git +[submodule "roms/pcbios"] + path = roms/pcbios + url = ../pcbios.git @@ -198,6 +198,10 @@ qemu-io$(EXESUF): qemu-io.o qemu-tool.o cmd.o $(block-obj-y) qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@") +check-qint: check-qint.o qint.o qemu-malloc.o +check-qstring: check-qstring.o qstring.o qemu-malloc.o +check-qdict: check-qdict.o qdict.o qint.o qstring.o qemu-malloc.o + clean: # avoid old build problems by removing potentially incorrect old files rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h diff --git a/check-qdict.c b/check-qdict.c new file mode 100644 index 000000000..19989d65a --- /dev/null +++ b/check-qdict.c @@ -0,0 +1,365 @@ +/* + * QDict unit-tests. + * + * Copyright (C) 2009 Red Hat Inc. + * + * Authors: + * Luiz Capitulino <lcapitulino@redhat.com> + */ +#include <check.h> + +#include "qint.h" +#include "qdict.h" +#include "qstring.h" +#include "qemu-common.h" + +/* + * Public Interface test-cases + * + * (with some violations to access 'private' data) + */ + +START_TEST(qdict_new_test) +{ + QDict *qdict; + + qdict = qdict_new(); + fail_unless(qdict != NULL); + fail_unless(qdict_size(qdict) == 0); + fail_unless(qdict->base.refcnt == 1); + fail_unless(qobject_type(QOBJECT(qdict)) == QTYPE_QDICT); + + // destroy doesn't exit yet + free(qdict); +} +END_TEST + +START_TEST(qdict_put_obj_test) +{ + QInt *qi; + QDict *qdict; + QDictEntry *ent; + const int num = 42; + + qdict = qdict_new(); + + // key "" will have tdb hash 12345 + qdict_put_obj(qdict, "", QOBJECT(qint_from_int(num))); + + fail_unless(qdict_size(qdict) == 1); + ent = LIST_FIRST(&qdict->table[12345 % QDICT_HASH_SIZE]); + qi = qobject_to_qint(ent->value); + fail_unless(qint_get_int(qi) == num); + + // destroy doesn't exit yet + QDECREF(qi); + qemu_free(ent->key); + qemu_free(ent); + qemu_free(qdict); +} +END_TEST + +START_TEST(qdict_destroy_simple_test) +{ + QDict *qdict; + + qdict = qdict_new(); + qdict_put_obj(qdict, "num", QOBJECT(qint_from_int(0))); + qdict_put_obj(qdict, "str", QOBJECT(qstring_from_str("foo"))); + + QDECREF(qdict); +} +END_TEST + +static QDict *tests_dict = NULL; + +static void qdict_setup(void) +{ + tests_dict = qdict_new(); + fail_unless(tests_dict != NULL); +} + +static void qdict_teardown(void) +{ + QDECREF(tests_dict); + tests_dict = NULL; +} + +START_TEST(qdict_get_test) +{ + QInt *qi; + QObject *obj; + const int value = -42; + const char *key = "test"; + + qdict_put(tests_dict, key, qint_from_int(value)); + + obj = qdict_get(tests_dict, key); + fail_unless(obj != NULL); + + qi = qobject_to_qint(obj); + fail_unless(qint_get_int(qi) == value); +} +END_TEST + +START_TEST(qdict_get_int_test) +{ + int ret; + const int value = 100; + const char *key = "int"; + + qdict_put(tests_dict, key, qint_from_int(value)); + + ret = qdict_get_int(tests_dict, key); + fail_unless(ret == value); +} +END_TEST + +START_TEST(qdict_get_try_int_test) +{ + int ret; + const int value = 100; + const char *key = "int"; + + qdict_put(tests_dict, key, qint_from_int(value)); + + ret = qdict_get_try_int(tests_dict, key, 0); + fail_unless(ret == value); +} +END_TEST + +START_TEST(qdict_get_str_test) +{ + const char *p; + const char *key = "key"; + const char *str = "string"; + + qdict_put(tests_dict, key, qstring_from_str(str)); + + p = qdict_get_str(tests_dict, key); + fail_unless(p != NULL); + fail_unless(strcmp(p, str) == 0); +} +END_TEST + +START_TEST(qdict_get_try_str_test) +{ + const char *p; + const char *key = "key"; + const char *str = "string"; + + qdict_put(tests_dict, key, qstring_from_str(str)); + + p = qdict_get_try_str(tests_dict, key); + fail_unless(p != NULL); + fail_unless(strcmp(p, str) == 0); +} +END_TEST + +START_TEST(qdict_haskey_not_test) +{ + fail_unless(qdict_haskey(tests_dict, "test") == 0); +} +END_TEST + +START_TEST(qdict_haskey_test) +{ + const char *key = "test"; + + qdict_put(tests_dict, key, qint_from_int(0)); + fail_unless(qdict_haskey(tests_dict, key) == 1); +} +END_TEST + +START_TEST(qdict_del_test) +{ + const char *key = "key test"; + + qdict_put(tests_dict, key, qstring_from_str("foo")); + fail_unless(qdict_size(tests_dict) == 1); + + qdict_del(tests_dict, key); + + fail_unless(qdict_size(tests_dict) == 0); + fail_unless(qdict_haskey(tests_dict, key) == 0); +} +END_TEST + +START_TEST(qobject_to_qdict_test) +{ + fail_unless(qobject_to_qdict(QOBJECT(tests_dict)) == tests_dict); +} +END_TEST + +/* + * Errors test-cases + */ + +START_TEST(qdict_put_exists_test) +{ + int value; + const char *key = "exists"; + + qdict_put(tests_dict, key, qint_from_int(1)); + qdict_put(tests_dict, key, qint_from_int(2)); + + value = qdict_get_int(tests_dict, key); + fail_unless(value == 2); +} +END_TEST + +START_TEST(qdict_get_not_exists_test) +{ + fail_unless(qdict_get(tests_dict, "foo") == NULL); +} +END_TEST + +/* + * Stress test-case + * + * This is a lot big for a unit-test, but there is no other place + * to have it. + */ + +static void remove_dots(char *string) +{ + char *p = strchr(string, ':'); + if (p) + *p = '\0'; +} + +static QString *read_line(FILE *file, char *key) +{ + char value[128]; + + if (fscanf(file, "%s%s", key, value) == EOF) + return NULL; + remove_dots(key); + return qstring_from_str(value); +} + +#define reset_file(file) fseek(file, 0L, SEEK_SET) + +START_TEST(qdict_stress_test) +{ + size_t lines; + char key[128]; + FILE *test_file; + QDict *qdict; + QString *value; + const char *test_file_path = "qdict-test-data.txt"; + + test_file = fopen(test_file_path, "r"); + fail_unless(test_file != NULL); + + // Create the dict + qdict = qdict_new(); + fail_unless(qdict != NULL); + + // Add everything from the test file + for (lines = 0;; lines++) { + value = read_line(test_file, key); + if (!value) + break; + + qdict_put(qdict, key, value); + } + fail_unless(qdict_size(qdict) == lines); + + // Check if everything is really in there + reset_file(test_file); + for (;;) { + const char *str1, *str2; + + value = read_line(test_file, key); + if (!value) + break; + + str1 = qstring_get_str(value); + + str2 = qdict_get_str(qdict, key); + fail_unless(str2 != NULL); + + fail_unless(strcmp(str1, str2) == 0); + + QDECREF(value); + } + + // Delete everything + reset_file(test_file); + for (;;) { + value = read_line(test_file, key); + if (!value) + break; + + qdict_del(qdict, key); + QDECREF(value); + + fail_unless(qdict_haskey(qdict, key) == 0); + } + fclose(test_file); + + fail_unless(qdict_size(qdict) == 0); + QDECREF(qdict); +} +END_TEST + +static Suite *qdict_suite(void) +{ + Suite *s; + TCase *qdict_public_tcase; + TCase *qdict_public2_tcase; + TCase *qdict_stress_tcase; + TCase *qdict_errors_tcase; + + s = suite_create("QDict test-suite"); + + qdict_public_tcase = tcase_create("Public Interface"); + suite_add_tcase(s, qdict_public_tcase); + tcase_add_test(qdict_public_tcase, qdict_new_test); + tcase_add_test(qdict_public_tcase, qdict_put_obj_test); + tcase_add_test(qdict_public_tcase, qdict_destroy_simple_test); + + /* Continue, but now with fixtures */ + qdict_public2_tcase = tcase_create("Public Interface (2)"); + suite_add_tcase(s, qdict_public2_tcase); + tcase_add_checked_fixture(qdict_public2_tcase, qdict_setup, qdict_teardown); + tcase_add_test(qdict_public2_tcase, qdict_get_test); + tcase_add_test(qdict_public2_tcase, qdict_get_int_test); + tcase_add_test(qdict_public2_tcase, qdict_get_try_int_test); + tcase_add_test(qdict_public2_tcase, qdict_get_str_test); + tcase_add_test(qdict_public2_tcase, qdict_get_try_str_test); + tcase_add_test(qdict_public2_tcase, qdict_haskey_not_test); + tcase_add_test(qdict_public2_tcase, qdict_haskey_test); + tcase_add_test(qdict_public2_tcase, qdict_del_test); + tcase_add_test(qdict_public2_tcase, qobject_to_qdict_test); + + qdict_errors_tcase = tcase_create("Errors"); + suite_add_tcase(s, qdict_errors_tcase); + tcase_add_checked_fixture(qdict_errors_tcase, qdict_setup, qdict_teardown); + tcase_add_test(qdict_errors_tcase, qdict_put_exists_test); + tcase_add_test(qdict_errors_tcase, qdict_get_not_exists_test); + + /* The Big one */ + qdict_stress_tcase = tcase_create("Stress Test"); + suite_add_tcase(s, qdict_stress_tcase); + tcase_add_test(qdict_stress_tcase, qdict_stress_test); + + return s; +} + +int main(void) +{ + int nf; + Suite *s; + SRunner *sr; + + s = qdict_suite(); + sr = srunner_create(s); + + srunner_run_all(sr, CK_NORMAL); + nf = srunner_ntests_failed(sr); + srunner_free(sr); + + return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE; +} diff --git a/check-qint.c b/check-qint.c new file mode 100644 index 000000000..ae5d22f7e --- /dev/null +++ b/check-qint.c @@ -0,0 +1,110 @@ +/* + * QInt unit-tests. + * + * Copyright (C) 2009 Red Hat Inc. + * + * Authors: + * Luiz Capitulino <lcapitulino@redhat.com> + */ +#include <check.h> + +#include "qint.h" +#include "qemu-common.h" + +/* + * Public Interface test-cases + * + * (with some violations to access 'private' data) + */ + +START_TEST(qint_from_int_test) +{ + QInt *qi; + const int value = -42; + + qi = qint_from_int(value); + fail_unless(qi != NULL); + fail_unless(qi->value == value); + fail_unless(qi->base.refcnt == 1); + fail_unless(qobject_type(QOBJECT(qi)) == QTYPE_QINT); + + // destroy doesn't exit yet + qemu_free(qi); +} +END_TEST + +START_TEST(qint_destroy_test) +{ + QInt *qi = qint_from_int(0); + QDECREF(qi); +} +END_TEST + +START_TEST(qint_from_int64_test) +{ + QInt *qi; + const int64_t value = 0xffffffffffffffff; + + qi = qint_from_int(value); + fail_unless(qi->value == value); + + QDECREF(qi); +} +END_TEST + +START_TEST(qint_get_int_test) +{ + QInt *qi; + const int value = 123456; + + qi = qint_from_int(value); + fail_unless(qint_get_int(qi) == value); + + QDECREF(qi); +} +END_TEST + +START_TEST(qobject_to_qint_test) +{ + QInt *qi; + + qi = qint_from_int(0); + fail_unless(qobject_to_qint(QOBJECT(qi)) == qi); + + QDECREF(qi); +} +END_TEST + +static Suite *qint_suite(void) +{ + Suite *s; + TCase *qint_public_tcase; + + s = suite_create("QInt test-suite"); + + qint_public_tcase = tcase_create("Public Interface"); + suite_add_tcase(s, qint_public_tcase); + tcase_add_test(qint_public_tcase, qint_from_int_test); + tcase_add_test(qint_public_tcase, qint_destroy_test); + tcase_add_test(qint_public_tcase, qint_from_int64_test); + tcase_add_test(qint_public_tcase, qint_get_int_test); + tcase_add_test(qint_public_tcase, qobject_to_qint_test); + + return s; +} + +int main(void) +{ + int nf; + Suite *s; + SRunner *sr; + + s = qint_suite(); + sr = srunner_create(s); + + srunner_run_all(sr, CK_NORMAL); + nf = srunner_ntests_failed(sr); + srunner_free(sr); + + return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE; +} diff --git a/check-qstring.c b/check-qstring.c new file mode 100644 index 000000000..ea4dfd03c --- /dev/null +++ b/check-qstring.c @@ -0,0 +1,100 @@ +/* + * QString unit-tests. + * + * Copyright (C) 2009 Red Hat Inc. + * + * Authors: + * Luiz Capitulino <lcapitulino@redhat.com> + */ +#include <check.h> + +#include "qstring.h" +#include "qemu-common.h" + +/* + * Public Interface test-cases + * + * (with some violations to access 'private' data) + */ + +START_TEST(qstring_from_str_test) +{ + QString *qstring; + const char *str = "QEMU"; + + qstring = qstring_from_str(str); + fail_unless(qstring != NULL); + fail_unless(qstring->base.refcnt == 1); + fail_unless(strcmp(str, qstring->string) == 0); + fail_unless(qobject_type(QOBJECT(qstring)) == QTYPE_QSTRING); + + // destroy doesn't exit yet + qemu_free(qstring->string); + qemu_free(qstring); +} +END_TEST + +START_TEST(qstring_destroy_test) +{ + QString *qstring = qstring_from_str("destroy test"); + QDECREF(qstring); +} +END_TEST + +START_TEST(qstring_get_str_test) +{ + QString *qstring; + const char *ret_str; + const char *str = "QEMU/KVM"; + + qstring = qstring_from_str(str); + ret_str = qstring_get_str(qstring); + fail_unless(strcmp(ret_str, str) == 0); + + QDECREF(qstring); +} +END_TEST + +START_TEST(qobject_to_qstring_test) +{ + QString *qstring; + + qstring = qstring_from_str("foo"); + fail_unless(qobject_to_qstring(QOBJECT(qstring)) == qstring); + + QDECREF(qstring); +} +END_TEST + +static Suite *qstring_suite(void) +{ + Suite *s; + TCase *qstring_public_tcase; + + s = suite_create("QString test-suite"); + + qstring_public_tcase = tcase_create("Public Interface"); + suite_add_tcase(s, qstring_public_tcase); + tcase_add_test(qstring_public_tcase, qstring_from_str_test); + tcase_add_test(qstring_public_tcase, qstring_destroy_test); + tcase_add_test(qstring_public_tcase, qstring_get_str_test); + tcase_add_test(qstring_public_tcase, qobject_to_qstring_test); + + return s; +} + +int main(void) +{ + int nf; + Suite *s; + SRunner *sr; + + s = qstring_suite(); + sr = srunner_create(s); + + srunner_run_all(sr, CK_NORMAL); + nf = srunner_ntests_failed(sr); + srunner_free(sr); + + return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE; +} @@ -239,6 +239,7 @@ eventfd="no" cpu_emulation="yes" kvm_kmod="no" pkgversion="" +check_utests="no" # OS specific if check_define __linux__ ; then @@ -549,6 +550,10 @@ for opt do ;; --enable-fdt) fdt="yes" ;; + --disable-check-utests) check_utests="no" + ;; + --enable-check-utests) check_utests="yes" + ;; --disable-nptl) nptl="no" ;; --enable-nptl) nptl="yes" @@ -688,6 +693,8 @@ echo " --disable-curl disable curl connectivity" echo " --enable-curl enable curl connectivity" echo " --disable-fdt disable fdt device tree" echo " --enable-fdt enable fdt device tree" +echo " --disable-check-utests disable check unit-tests" +echo " --enable-check-utests enable check unit-tests" echo " --disable-bluez disable bluez stack connectivity" echo " --enable-bluez enable bluez stack connectivity" echo " --disable-kvm disable KVM acceleration support" @@ -1320,6 +1327,26 @@ EOF fi # test "$curl" ########################################## +# check framework probe + +if test "$check_utests" != "no" ; then + cat > $TMPC << EOF +#include <check.h> +int main(void) { suite_create("qemu test"); return 0; } +EOF + check_libs=`pkg-config --libs check` + if compile_prog "" $check_libs ; then + check_utests=yes + libs_tools="$check_libs $libs_tools" + else + if test "$check_utests" = "yes" ; then + feature_not_found "check" + fi + check_utests=no + fi +fi # test "$check_utests" + +########################################## # bluez support probe if test "$bluez" != "no" ; then cat > $TMPC << EOF @@ -1787,6 +1814,7 @@ fi echo "SDL support $sdl" echo "curses support $curses" echo "curl support $curl" +echo "check support $check_utests" echo "mingw32 support $mingw32" echo "Audio drivers $audio_drv_list" echo "Extra audio cards $audio_card_list" @@ -2039,6 +2067,9 @@ if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then tools="qemu-img\$(EXESUF) $tools" if [ "$linux" = "yes" ] ; then tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools" + if [ "$check_utests" = "yes" ]; then + tools="check-qint check-qstring check-qdict $tools" + fi fi fi echo "TOOLS=$tools" >> $config_host_mak @@ -2544,10 +2575,12 @@ done # for target in $targets # build tree in object directory if source path is different from current one if test "$source_path_used" = "yes" ; then DIRS="tests tests/cris slirp audio block pc-bios/optionrom" + DIRS="$DIRS roms/pcbios roms/seabios roms/vgabios" FILES="Makefile tests/Makefile" FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" FILES="$FILES tests/test-mmap.c" FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x" + FILES="$FILES roms/pcbios/Makefile roms/seabios/Makefile roms/vgabios/Makefile" for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do FILES="$FILES pc-bios/`basename $bios_file`" done @@ -2561,6 +2594,20 @@ if test "$source_path_used" = "yes" ; then done fi +# temporary config to build submodules +for rom in seabios vgabios pcbios; do + config_mak=roms/$rom/config.mak + echo "# Automatically generated by configure - do not modify" >> $config_mak + echo "SRC_PATH=$source_path/roms/$rom" >> $config_mak + echo "CC=$cc" >> $config_mak + echo "BCC=bcc" >> $config_mak + echo "CPP=${cross_prefix}cpp" >> $config_mak + echo "OBJCOPY=objcopy" >> $config_mak + echo "IASL=iasl" >> $config_mak + echo "HOST_CC=$host_cc" >> $config_mak + echo "LD=$ld" >> $config_mak +done + for hwlib in 32 64; do d=libhw$hwlib mkdir -p $d @@ -203,14 +203,14 @@ static uint32_t get_cmd(ESPState *s, uint8_t *buf) return dmalen; } -static void do_cmd(ESPState *s, uint8_t *buf) +static void do_busid_cmd(ESPState *s, uint8_t *buf, uint8_t busid) { int32_t datalen; int lun; - DPRINTF("do_cmd: busid 0x%x\n", buf[0]); - lun = buf[0] & 7; - datalen = s->current_dev->send_command(s->current_dev, 0, &buf[1], lun); + DPRINTF("do_busid_cmd: busid 0x%x\n", busid); + lun = busid & 7; + datalen = s->current_dev->send_command(s->current_dev, 0, buf, lun); s->ti_size = datalen; if (datalen != 0) { s->rregs[ESP_RSTAT] = STAT_TC; @@ -229,6 +229,13 @@ static void do_cmd(ESPState *s, uint8_t *buf) esp_raise_irq(s); } +static void do_cmd(ESPState *s, uint8_t *buf) +{ + uint8_t busid = buf[0]; + + do_busid_cmd(s, &buf[1], busid); +} + static void handle_satn(ESPState *s) { uint8_t buf[32]; @@ -239,6 +246,17 @@ static void handle_satn(ESPState *s) do_cmd(s, buf); } +static void handle_s_without_atn(ESPState *s) +{ + uint8_t buf[32]; + int len; + + len = get_cmd(s, buf); + if (len) { + do_busid_cmd(s, buf, 0); + } +} + static void handle_satn_stop(ESPState *s) { s->cmdlen = get_cmd(s, s->cmdbuf); @@ -544,7 +562,7 @@ static void esp_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val) break; case CMD_SEL: DPRINTF("Select without ATN (%2.2x)\n", val); - handle_satn(s); + handle_s_without_atn(s); break; case CMD_SELATN: DPRINTF("Select with ATN (%2.2x)\n", val); @@ -10,10 +10,8 @@ void isa_ide_init(int iobase, int iobase2, qemu_irq irq, /* ide-pci.c */ void pci_cmd646_ide_init(PCIBus *bus, DriveInfo **hd_table, int secondary_ide_enabled); -void pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn, - qemu_irq *pic); -void pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn, - qemu_irq *pic); +void pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn); +void pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn); /* ide-macio.c */ int pmac_ide_init (DriveInfo **hd_table, qemu_irq irq, diff --git a/hw/ide/pci.c b/hw/ide/pci.c index 0e8583a04..607472bb5 100644 --- a/hw/ide/pci.c +++ b/hw/ide/pci.c @@ -443,8 +443,7 @@ static void piix3_reset(void *opaque) /* hd_table must contain 4 block drivers */ /* NOTE: for the PIIX3, the IRQs and IOports are hardcoded */ -void pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn, - qemu_irq *pic) +void pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn) { PCIIDEState *d; uint8_t *pci_conf; @@ -479,8 +478,7 @@ void pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn, /* hd_table must contain 4 block drivers */ /* NOTE: for the PIIX4, the IRQs and IOports are hardcoded */ -void pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn, - qemu_irq *pic) +void pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn) { PCIIDEState *d; uint8_t *pci_conf; @@ -505,11 +503,8 @@ void pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn, pci_register_bar((PCIDevice *)d, 4, 0x10, PCI_ADDRESS_SPACE_IO, bmdma_map); - /* - * These should call isa_reserve_irq() instead when MIPS supports it - */ - ide_init2(&d->bus[0], hd_table[0], hd_table[1], pic[14]); - ide_init2(&d->bus[1], hd_table[2], hd_table[3], pic[15]); + ide_init2(&d->bus[0], hd_table[0], hd_table[1], isa_reserve_irq(14)); + ide_init2(&d->bus[1], hd_table[2], hd_table[3], isa_reserve_irq(15)); ide_init_ioport(&d->bus[0], 0x1f0, 0x3f6); ide_init_ioport(&d->bus[1], 0x170, 0x376); diff --git a/hw/mips_malta.c b/hw/mips_malta.c index 275f72c65..bb6364b08 100644 --- a/hw/mips_malta.c +++ b/hw/mips_malta.c @@ -765,6 +765,7 @@ void mips_malta_init (ram_addr_t ram_size, target_long bios_size; int64_t kernel_entry; PCIBus *pci_bus; + ISADevice *isa_dev; CPUState *env; RTCState *rtc_state; fdctrl_t *floppy_controller; @@ -903,9 +904,10 @@ void mips_malta_init (ram_addr_t ram_size, } piix4_devfn = piix4_init(pci_bus, 80); - pci_piix4_ide_init(pci_bus, hd, piix4_devfn + 1, i8259); + isa_bus_irqs(i8259); + pci_piix4_ide_init(pci_bus, hd, piix4_devfn + 1); usb_uhci_piix4_init(pci_bus, piix4_devfn + 2); - smbus = piix4_pm_init(pci_bus, piix4_devfn + 3, 0x1100, i8259[9]); + smbus = piix4_pm_init(pci_bus, piix4_devfn + 3, 0x1100, isa_reserve_irq(9)); eeprom_buf = qemu_mallocz(8 * 256); /* XXX: make this persistent */ for (i = 0; i < 8; i++) { /* TODO: Populate SPD eeprom data. */ @@ -915,16 +917,17 @@ void mips_malta_init (ram_addr_t ram_size, qdev_prop_set_ptr(eeprom, "data", eeprom_buf + (i * 256)); qdev_init(eeprom); } - pit = pit_init(0x40, i8259[0]); + pit = pit_init(0x40, isa_reserve_irq(0)); DMA_init(0); /* Super I/O */ - i8042_init(i8259[1], i8259[12], 0x60); - rtc_state = rtc_init(0x70, i8259[8], 2000); - serial_init(0x3f8, i8259[4], 115200, serial_hds[0]); - serial_init(0x2f8, i8259[3], 115200, serial_hds[1]); + isa_dev = isa_create_simple("i8042", 0x60, 0x64, 1, 12); + + rtc_state = rtc_init(0x70, isa_reserve_irq(8), 2000); + serial_init(0x3f8, isa_reserve_irq(4), 115200, serial_hds[0]); + serial_init(0x2f8, isa_reserve_irq(3), 115200, serial_hds[1]); if (parallel_hds[0]) - parallel_init(0x378, i8259[7], parallel_hds[0]); + parallel_init(0x378, isa_reserve_irq(7), parallel_hds[0]); for(i = 0; i < MAX_FD; i++) { dinfo = drive_get(IF_FLOPPY, 0, i); fd[i] = dinfo ? dinfo->bdrv : NULL; @@ -553,7 +553,7 @@ static void generate_bootsect(target_phys_addr_t option_rom, *p++ = 0x1f; /* pop ds */ *p++ = 0x58; /* pop ax */ *p++ = 0xcb; /* lret */ - + /* Actual code */ *reloc = (p - rom); @@ -742,7 +742,7 @@ static int load_multiboot(void *fw_cfg, if ((next_space = strchr(initrd_filename, ' '))) *next_space = '\0'; #ifdef DEBUG_MULTIBOOT - printf("multiboot loading module: %s\n", initrd_filename); + printf("multiboot loading module: %s\n", initrd_filename); #endif f = fopen(initrd_filename, "rb"); if (f) { @@ -862,7 +862,7 @@ static void load_linux(void *fw_cfg, treating it like a Linux kernel. */ if (load_multiboot(fw_cfg, f, kernel_filename, initrd_filename, kernel_cmdline, header)) - return; + return; protocol = 0; } @@ -1062,35 +1062,35 @@ static void pc_init_ne2k_isa(NICInfo *nd) static int load_option_rom(const char *oprom, target_phys_addr_t start, target_phys_addr_t end) { - int size; - char *filename; - - filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, oprom); - if (filename) { - size = get_image_size(filename); - if (size > 0 && start + size > end) { - fprintf(stderr, "Not enough space to load option rom '%s'\n", - oprom); - exit(1); - } - size = load_image_targphys(filename, start, end - start); - qemu_free(filename); - } else { - size = -1; - } - if (size < 0) { - fprintf(stderr, "Could not load option rom '%s'\n", oprom); + int size; + char *filename; + + filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, oprom); + if (filename) { + size = get_image_size(filename); + if (size > 0 && start + size > end) { + fprintf(stderr, "Not enough space to load option rom '%s'\n", + oprom); exit(1); } - /* Round up optiom rom size to the next 2k boundary */ - size = (size + 2047) & ~2047; - option_rom_setup_reset(start, size); - return size; + size = load_image_targphys(filename, start, end - start); + qemu_free(filename); + } else { + size = -1; + } + if (size < 0) { + fprintf(stderr, "Could not load option rom '%s'\n", oprom); + exit(1); + } + /* Round up optiom rom size to the next 2k boundary */ + size = (size + 2047) & ~2047; + option_rom_setup_reset(start, size); + return size; } int cpu_is_bsp(CPUState *env) { - return env->cpuid_apic_id == 0; + return env->cpuid_apic_id == 0; } CPUState *pc_new_cpu(const char *cpu_model) @@ -1387,7 +1387,7 @@ static void pc_init1(ram_addr_t ram_size, } if (pci_enabled) { - pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1, isa_irq); + pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1); } else { for(i = 0; i < MAX_IDE_BUS; i++) { isa_ide_init(ide_iobase[i], ide_iobase2[i], diff --git a/hw/piix4.c b/hw/piix4.c index a9849eeeb..a6aea15e7 100644 --- a/hw/piix4.c +++ b/hw/piix4.c @@ -86,6 +86,7 @@ static int piix4_initfn(PCIDevice *d) { uint8_t *pci_conf; + isa_bus_new(&d->qdev); register_savevm("PIIX4", 0, 2, piix_save, piix_load, d); pci_conf = d->config; diff --git a/hw/sun4u.c b/hw/sun4u.c index 098df9da8..03855d34f 100644 --- a/hw/sun4u.c +++ b/hw/sun4u.c @@ -326,18 +326,12 @@ void cpu_tick_set_limit(void *opaque, uint64_t limit) ptimer_set_limit(opaque, -limit, 0); } -static const int ide_iobase[2] = { 0x1f0, 0x170 }; -static const int ide_iobase2[2] = { 0x3f6, 0x376 }; -static const int ide_irq[2] = { 14, 15 }; - static const int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 }; static const int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 }; static const int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc }; static const int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 }; -static fdctrl_t *floppy_controller; - static void ebus_mmio_mapfunc(PCIDevice *pci_dev, int region_num, uint32_t addr, uint32_t size, int type) { @@ -623,13 +617,13 @@ static void sun4uv_init(ram_addr_t RAM_size, pci_cmd646_ide_init(pci_bus, hd, 1); - /* FIXME: wire up interrupts. */ - i8042_init(NULL/*1*/, NULL/*12*/, 0x60); + isa_create_simple("i8042", 0x60, 0x64, 1, 12); for(i = 0; i < MAX_FD; i++) { dinfo = drive_get(IF_FLOPPY, 0, i); fd[i] = dinfo ? dinfo->bdrv : NULL; } - floppy_controller = fdctrl_init_isa(6, 2, 0x3f0, fd); + fdctrl_init_isa(6, 2, 0x3f0, fd); + /* FIXME: wire up interrupts. */ nvram = m48t59_init(NULL/*8*/, 0, 0x0074, NVRAM_SIZE, 59); initrd_size = 0; @@ -56,7 +56,7 @@ static IOPortWriteFunc default_ioport_writeb, default_ioport_writew, default_iop static uint32_t ioport_read(int index, uint32_t address) { - static IOPortReadFunc *default_func[3] = { + static IOPortReadFunc * const default_func[3] = { default_ioport_readb, default_ioport_readw, default_ioport_readl @@ -69,7 +69,7 @@ static uint32_t ioport_read(int index, uint32_t address) static void ioport_write(int index, uint32_t address, uint32_t data) { - static IOPortWriteFunc *default_func[3] = { + static IOPortWriteFunc * const default_func[3] = { default_ioport_writeb, default_ioport_writew, default_ioport_writel diff --git a/linux-user/mmap.c b/linux-user/mmap.c index 6ce41677a..07ce05157 100644 --- a/linux-user/mmap.c +++ b/linux-user/mmap.c @@ -34,7 +34,7 @@ //#define DEBUG_MMAP #if defined(CONFIG_USE_NPTL) -pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER; +static pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER; static int __thread mmap_lock_count; void mmap_lock(void) @@ -64,7 +64,9 @@ * 'l' target long (32 or 64 bit) * '/' optional gdb-like print format (like "/10x") * - * '?' optional type (for 'F', 's' and 'i') + * '?' optional type (for all types, except '/') + * '.' other form of optional type (for 'i' and 'l') + * '-' optional parameter (eg. '-f') * */ @@ -807,37 +809,31 @@ static void memory_dump(Monitor *mon, int count, int format, int wsize, } } -#if TARGET_LONG_BITS == 64 -#define GET_TLONG(h, l) (((uint64_t)(h) << 32) | (l)) -#else -#define GET_TLONG(h, l) (l) -#endif - -static void do_memory_dump(Monitor *mon, int count, int format, int size, - uint32_t addrh, uint32_t addrl) +static void do_memory_dump(Monitor *mon, const QDict *qdict) { - target_long addr = GET_TLONG(addrh, addrl); + int count = qdict_get_int(qdict, "count"); + int format = qdict_get_int(qdict, "format"); + int size = qdict_get_int(qdict, "size"); + target_long addr = qdict_get_int(qdict, "addr"); + memory_dump(mon, count, format, size, addr, 0); } -#if TARGET_PHYS_ADDR_BITS > 32 -#define GET_TPHYSADDR(h, l) (((uint64_t)(h) << 32) | (l)) -#else -#define GET_TPHYSADDR(h, l) (l) -#endif - -static void do_physical_memory_dump(Monitor *mon, int count, int format, - int size, uint32_t addrh, uint32_t addrl) - +static void do_physical_memory_dump(Monitor *mon, const QDict *qdict) { - target_phys_addr_t addr = GET_TPHYSADDR(addrh, addrl); + int count = qdict_get_int(qdict, "count"); + int format = qdict_get_int(qdict, "format"); + int size = qdict_get_int(qdict, "size"); + target_phys_addr_t addr = qdict_get_int(qdict, "addr"); + memory_dump(mon, count, format, size, addr, 1); } -static void do_print(Monitor *mon, int count, int format, int size, - unsigned int valh, unsigned int vall) +static void do_print(Monitor *mon, const QDict *qdict) { - target_phys_addr_t val = GET_TPHYSADDR(valh, vall); + int format = qdict_get_int(qdict, "format"); + target_phys_addr_t val = qdict_get_int(qdict, "val"); + #if TARGET_PHYS_ADDR_BITS == 32 switch(format) { case 'o': @@ -880,11 +876,12 @@ static void do_print(Monitor *mon, int count, int format, int size, monitor_printf(mon, "\n"); } -static void do_memory_save(Monitor *mon, unsigned int valh, unsigned int vall, - uint32_t size, const char *filename) +static void do_memory_save(Monitor *mon, const QDict *qdict) { FILE *f; - target_long addr = GET_TLONG(valh, vall); + uint32_t size = qdict_get_int(qdict, "size"); + const char *filename = qdict_get_str(qdict, "filename"); + target_long addr = qdict_get_int(qdict, "val"); uint32_t l; CPUState *env; uint8_t buf[1024]; @@ -910,14 +907,14 @@ static void do_memory_save(Monitor *mon, unsigned int valh, unsigned int vall, fclose(f); } -static void do_physical_memory_save(Monitor *mon, unsigned int valh, - unsigned int vall, uint32_t size, - const char *filename) +static void do_physical_memory_save(Monitor *mon, const QDict *qdict) { FILE *f; uint32_t l; uint8_t buf[1024]; - target_phys_addr_t addr = GET_TPHYSADDR(valh, vall); + uint32_t size = qdict_get_int(qdict, "size"); + const char *filename = qdict_get_str(qdict, "filename"); + target_phys_addr_t addr = qdict_get_int(qdict, "val"); f = fopen(filename, "wb"); if (!f) { @@ -1212,13 +1209,16 @@ static void do_mouse_button(Monitor *mon, const QDict *qdict) kbd_mouse_event(0, 0, 0, mouse_button_state); } -static void do_ioport_read(Monitor *mon, int count, int format, int size, - int addr, int has_index, int index) +static void do_ioport_read(Monitor *mon, const QDict *qdict) { + int size = qdict_get_int(qdict, "size"); + int addr = qdict_get_int(qdict, "addr"); + int has_index = qdict_haskey(qdict, "index"); uint32_t val; int suffix; if (has_index) { + int index = qdict_get_int(qdict, "index"); cpu_outb(NULL, addr & IOPORTS_MASK, index & 0xff); addr++; } @@ -1243,9 +1243,12 @@ static void do_ioport_read(Monitor *mon, int count, int format, int size, suffix, addr, size * 2, val); } -static void do_ioport_write(Monitor *mon, int count, int format, int size, - int addr, int val) +static void do_ioport_write(Monitor *mon, const QDict *qdict) { + int size = qdict_get_int(qdict, "size"); + int addr = qdict_get_int(qdict, "addr"); + int val = qdict_get_int(qdict, "val"); + addr &= IOPORTS_MASK; switch (size) { @@ -1523,11 +1526,15 @@ static void do_stop_capture(Monitor *mon, const QDict *qdict) } } -static void do_wav_capture(Monitor *mon, const char *path, - int has_freq, int freq, - int has_bits, int bits, - int has_channels, int nchannels) +static void do_wav_capture(Monitor *mon, const QDict *qdict) { + const char *path = qdict_get_str(qdict, "path"); + int has_freq = qdict_haskey(qdict, "freq"); + int freq = qdict_get_try_int(qdict, "freq", -1); + int has_bits = qdict_haskey(qdict, "bits"); + int bits = qdict_get_try_int(qdict, "bits", -1); + int has_channels = qdict_haskey(qdict, "nchannels"); + int nchannels = qdict_get_try_int(qdict, "nchannels", -1); CaptureState *s; s = qemu_mallocz (sizeof (*s)); @@ -1654,10 +1661,13 @@ static void do_acl_policy(Monitor *mon, const QDict *qdict) } } -static void do_acl_add(Monitor *mon, const char *aclname, - const char *match, const char *policy, - int has_index, int index) +static void do_acl_add(Monitor *mon, const QDict *qdict) { + const char *aclname = qdict_get_str(qdict, "aclname"); + const char *match = qdict_get_str(qdict, "match"); + const char *policy = qdict_get_str(qdict, "policy"); + int has_index = qdict_haskey(qdict, "index"); + int index = qdict_get_try_int(qdict, "index", -1); qemu_acl *acl = find_acl(mon, aclname); int deny, ret; @@ -1699,18 +1709,15 @@ static void do_acl_remove(Monitor *mon, const QDict *qdict) } #if defined(TARGET_I386) -static void do_inject_mce(Monitor *mon, - int cpu_index, int bank, - unsigned status_hi, unsigned status_lo, - unsigned mcg_status_hi, unsigned mcg_status_lo, - unsigned addr_hi, unsigned addr_lo, - unsigned misc_hi, unsigned misc_lo) +static void do_inject_mce(Monitor *mon, const QDict *qdict) { CPUState *cenv; - uint64_t status = ((uint64_t)status_hi << 32) | status_lo; - uint64_t mcg_status = ((uint64_t)mcg_status_hi << 32) | mcg_status_lo; - uint64_t addr = ((uint64_t)addr_hi << 32) | addr_lo; - uint64_t misc = ((uint64_t)misc_hi << 32) | misc_lo; + int cpu_index = qdict_get_int(qdict, "cpu_index"); + int bank = qdict_get_int(qdict, "bank"); + uint64_t status = qdict_get_int(qdict, "status"); + uint64_t mcg_status = qdict_get_int(qdict, "mcg_status"); + uint64_t addr = qdict_get_int(qdict, "addr"); + uint64_t misc = qdict_get_int(qdict, "misc"); for (cenv = first_cpu; cenv != NULL; cenv = cenv->next_cpu) if (cenv->cpu_index == cpu_index && cenv->mcg_cap) { @@ -2597,35 +2604,16 @@ static int default_fmt_size = 4; #define MAX_ARGS 16 -static void monitor_handle_command(Monitor *mon, const char *cmdline) +static const mon_cmd_t *monitor_parse_command(Monitor *mon, + const char *cmdline, + QDict *qdict) { const char *p, *typestr; - int c, nb_args, i, has_arg; + int c; const mon_cmd_t *cmd; char cmdname[256]; char buf[1024]; char *key; - QDict *qdict; - void *str_allocated[MAX_ARGS]; - void *args[MAX_ARGS]; - void (*handler_d)(Monitor *mon, const QDict *qdict); - void (*handler_4)(Monitor *mon, void *arg0, void *arg1, void *arg2, - void *arg3); - void (*handler_5)(Monitor *mon, void *arg0, void *arg1, void *arg2, - void *arg3, void *arg4); - void (*handler_6)(Monitor *mon, void *arg0, void *arg1, void *arg2, - void *arg3, void *arg4, void *arg5); - void (*handler_7)(Monitor *mon, void *arg0, void *arg1, void *arg2, - void *arg3, void *arg4, void *arg5, void *arg6); - void (*handler_8)(Monitor *mon, void *arg0, void *arg1, void *arg2, - void *arg3, void *arg4, void *arg5, void *arg6, - void *arg7); - void (*handler_9)(Monitor *mon, void *arg0, void *arg1, void *arg2, - void *arg3, void *arg4, void *arg5, void *arg6, - void *arg7, void *arg8); - void (*handler_10)(Monitor *mon, void *arg0, void *arg1, void *arg2, - void *arg3, void *arg4, void *arg5, void *arg6, - void *arg7, void *arg8, void *arg9); #ifdef DEBUG monitor_printf(mon, "command='%s'\n", cmdline); @@ -2634,7 +2622,7 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) /* extract the command name */ p = get_command_name(cmdline, cmdname, sizeof(cmdname)); if (!p) - return; + return NULL; /* find the command */ for(cmd = mon_cmds; cmd->name != NULL; cmd++) { @@ -2644,17 +2632,11 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) if (cmd->name == NULL) { monitor_printf(mon, "unknown command: '%s'\n", cmdname); - return; + return NULL; } - qdict = qdict_new(); - - for(i = 0; i < MAX_ARGS; i++) - str_allocated[i] = NULL; - /* parse the parameters */ typestr = cmd->args_type; - nb_args = 0; for(;;) { typestr = key_get_info(typestr, &key); if (!typestr) @@ -2667,7 +2649,6 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) case 's': { int ret; - char *str; while (qemu_isspace(*p)) p++; @@ -2675,8 +2656,7 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) typestr++; if (*p == '\0') { /* no optional string: NULL argument */ - str = NULL; - goto add_str; + break; } } ret = get_str(buf, sizeof(buf), &p); @@ -2696,18 +2676,7 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) } goto fail; } - str = qemu_malloc(strlen(buf) + 1); - pstrcpy(str, sizeof(buf), buf); - str_allocated[nb_args] = str; - add_str: - if (nb_args >= MAX_ARGS) { - error_args: - monitor_printf(mon, "%s: too many arguments\n", cmdname); - goto fail; - } - args[nb_args++] = str; - if (str) - qdict_put(qdict, key, qstring_from_str(str)); + qdict_put(qdict, key, qstring_from_str(buf)); } break; case '/': @@ -2784,11 +2753,6 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) size = -1; } } - if (nb_args + 3 > MAX_ARGS) - goto error_args; - args[nb_args++] = (void*)(long)count; - args[nb_args++] = (void*)(long)format; - args[nb_args++] = (void*)(long)size; qdict_put(qdict, "count", qint_from_int(count)); qdict_put(qdict, "format", qint_from_int(format)); qdict_put(qdict, "size", qint_from_int(size)); @@ -2798,58 +2762,36 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) case 'l': { int64_t val; - int dict_add = 1; while (qemu_isspace(*p)) p++; if (*typestr == '?' || *typestr == '.') { if (*typestr == '?') { - if (*p == '\0') - has_arg = 0; - else - has_arg = 1; + if (*p == '\0') { + typestr++; + break; + } } else { if (*p == '.') { p++; while (qemu_isspace(*p)) p++; - has_arg = 1; } else { - has_arg = 0; + typestr++; + break; } } typestr++; - if (nb_args >= MAX_ARGS) - goto error_args; - dict_add = has_arg; - args[nb_args++] = (void *)(long)has_arg; - if (!has_arg) { - if (nb_args >= MAX_ARGS) - goto error_args; - val = -1; - goto add_num; - } } if (get_expr(mon, &val, &p)) goto fail; - add_num: - if (c == 'i') { - if (nb_args >= MAX_ARGS) - goto error_args; - args[nb_args++] = (void *)(long)val; - if (dict_add) - qdict_put(qdict, key, qint_from_int(val)); - } else { - if ((nb_args + 1) >= MAX_ARGS) - goto error_args; -#if TARGET_PHYS_ADDR_BITS > 32 - args[nb_args++] = (void *)(long)((val >> 32) & 0xffffffff); -#else - args[nb_args++] = (void *)0; -#endif - args[nb_args++] = (void *)(long)(val & 0xffffffff); - qdict_put(qdict, key, qint_from_int(val)); + /* Check if 'i' is greater than 32-bit */ + if ((c == 'i') && ((val >> 32) & 0xffffffff)) { + monitor_printf(mon, "\'%s\' has failed: ", cmdname); + monitor_printf(mon, "integer is for 32-bit values\n"); + goto fail; } + qdict_put(qdict, key, qint_from_int(val)); } break; case '-': @@ -2873,9 +2815,6 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) p++; has_option = 1; } - if (nb_args >= MAX_ARGS) - goto error_args; - args[nb_args++] = (void *)(long)has_option; qdict_put(qdict, key, qint_from_int(has_option)); } break; @@ -2896,57 +2835,32 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) goto fail; } - qemu_errors_to_mon(mon); - switch(nb_args) { - case 0: - case 1: - case 2: - case 3: - handler_d = cmd->handler; - handler_d(mon, qdict); - break; - case 4: - handler_4 = cmd->handler; - handler_4(mon, args[0], args[1], args[2], args[3]); - break; - case 5: - handler_5 = cmd->handler; - handler_5(mon, args[0], args[1], args[2], args[3], args[4]); - break; - case 6: - handler_6 = cmd->handler; - handler_6(mon, args[0], args[1], args[2], args[3], args[4], args[5]); - break; - case 7: - handler_7 = cmd->handler; - handler_7(mon, args[0], args[1], args[2], args[3], args[4], args[5], - args[6]); - break; - case 8: - handler_8 = cmd->handler; - handler_8(mon, args[0], args[1], args[2], args[3], args[4], args[5], - args[6], args[7]); - break; - case 9: - handler_9 = cmd->handler; - handler_9(mon, args[0], args[1], args[2], args[3], args[4], args[5], - args[6], args[7], args[8]); - break; - case 10: - handler_10 = cmd->handler; - handler_10(mon, args[0], args[1], args[2], args[3], args[4], args[5], - args[6], args[7], args[8], args[9]); - break; - default: - monitor_printf(mon, "unsupported number of arguments: %d\n", nb_args); - break; - } - qemu_errors_to_previous(); + return cmd; - fail: +fail: qemu_free(key); - for(i = 0; i < MAX_ARGS; i++) - qemu_free(str_allocated[i]); + return NULL; +} + +static void monitor_handle_command(Monitor *mon, const char *cmdline) +{ + QDict *qdict; + const mon_cmd_t *cmd; + + qdict = qdict_new(); + + cmd = monitor_parse_command(mon, cmdline, qdict); + if (cmd) { + void (*handler)(Monitor *mon, const QDict *qdict); + + qemu_errors_to_mon(mon); + + handler = cmd->handler; + handler(mon, qdict); + + qemu_errors_to_previous(); + } + QDECREF(qdict); } @@ -31,6 +31,8 @@ /* Needed early for CONFIG_BSD etc. */ #include "config-host.h" +/* Needed early to override system queue definitions on BSD */ +#include "sys-queue.h" #ifndef _WIN32 #include <sys/times.h> diff --git a/pc-bios/README b/pc-bios/README index f6276d788..ddd91f49e 100644 --- a/pc-bios/README +++ b/pc-bios/README @@ -1,35 +1,7 @@ - The PC BIOS comes from the Bochs project (http://bochs.sourceforge.net/). - The patches in bios-pq have been applied. The binary is based on the revision - in bios-pq/HEAD with the patches in bios-pq/series applied. The git repo - that HEAD refers to is located at - git://git.kernel.org/pub/scm/virt/bochs/bochs.git - - To build these use the following instructions: - using guilt: - $ export QEMUSRC=/path/to/qemu/svn - $ git clone git://git.kernel.org/pub/scm/virt/bochs/bochs.git - $ cd bochs - $ git checkout -b qemu-bios $(cat $QEMUSRC/pc-bios/bios-pq/HEAD) - - $ mkdir -p .git/patches - $ ln -s $QEMUSRC/pc-bios/bios-pq .git/patches/qemu-bios - $ touch .git/patches/qemu-bios/status - $ guilt push -a - $ ./configure - $ cd bios - $ make - $ cp BIOS-bochs-latest $QEMUSRC/pc-bios/bios.bin - - or alternatively (after the git checkout): - $ for p in $(cat $QEMUSRC/pc-bios/bios-pq/series); do git am $p; done - $ ./configure - $ make bios - The VGA BIOS and the Cirrus VGA BIOS come from the LGPL VGA bios - project (http://www.nongnu.org/vgabios/). The binary is based on the revision - in vgabios-pq/HEAD with the patches in vgabios-pq/series applied. The git - repo that HEAD refers to is located at - git://git.kernel.org/pub/scm/virt/vgabios/vgabios.git + project (http://www.nongnu.org/vgabios/). - The PowerPC Open Hack'Ware Open Firmware Compatible BIOS is available at http://perso.magic.fr/l_indien/OpenHackWare/index.htm. diff --git a/pc-bios/bios-pq/0001_bx-qemu.patch b/pc-bios/bios-pq/0001_bx-qemu.patch deleted file mode 100644 index ffca6b9ae..000000000 --- a/pc-bios/bios-pq/0001_bx-qemu.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- bochs-2.3.7.orig/bios/rombios.h -+++ bochs-2.3.7/bios/rombios.h -@@ -19,7 +19,7 @@ - // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - - /* define it to include QEMU specific code */ --//#define BX_QEMU -+#define BX_QEMU - - #ifndef LEGACY - # define BX_ROMBIOS32 1 diff --git a/pc-bios/bios-pq/0002_kvm-bios-update-smbios-table-to-report-memory-above-4g.patch b/pc-bios/bios-pq/0002_kvm-bios-update-smbios-table-to-report-memory-above-4g.patch deleted file mode 100644 index 3c1b92185..000000000 --- a/pc-bios/bios-pq/0002_kvm-bios-update-smbios-table-to-report-memory-above-4g.patch +++ /dev/null @@ -1,55 +0,0 @@ -update SMBIOS table to report memory above 4G (Alex Williamson) - -Signed-off-by: Alex Williamson <alex.williamson@hp.com> -Signed-off-by: Avi Kivity <avi@redhat.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -Index: bochs/bios/rombios32.c -=================================================================== -diff --git a/bios/rombios32.c b/bios/rombios32.c -index 3269be5..9587288 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -429,6 +429,7 @@ uint32_t cpuid_signature; - uint32_t cpuid_features; - uint32_t cpuid_ext_features; - unsigned long ram_size; -+uint64_t ram_end; - uint8_t bios_uuid[16]; - #ifdef BX_USE_EBDA_TABLES - unsigned long ebda_cur_addr; -@@ -571,6 +572,13 @@ void ram_probe(void) - ram_size = (cmos_readb(0x30) | (cmos_readb(0x31) << 8)) * 1024 + - 1 * 1024 * 1024; - BX_INFO("ram_size=0x%08lx\n", ram_size); -+ if (cmos_readb(0x5b) | cmos_readb(0x5c) | cmos_readb(0x5d)) -+ ram_end = (((uint64_t)cmos_readb(0x5b) << 16) | -+ ((uint64_t)cmos_readb(0x5c) << 24) | -+ ((uint64_t)cmos_readb(0x5d) << 32)) + (1ull << 32); -+ else -+ ram_end = ram_size; -+ BX_INFO("end of ram=%ldMB\n", ram_end >> 20); - #ifdef BX_USE_EBDA_TABLES - ebda_cur_addr = ((*(uint16_t *)(0x40e)) << 4) + 0x380; - BX_INFO("ebda_cur_addr: 0x%08lx\n", ebda_cur_addr); -@@ -2174,7 +2182,8 @@ void smbios_init(void) - { - unsigned cpu_num, nr_structs = 0, max_struct_size = 0; - char *start, *p, *q; -- int memsize = ram_size / (1024 * 1024); -+ int memsize = (ram_end == ram_size) ? ram_size / (1024 * 1024) : -+ (ram_end - (1ull << 32) + ram_size) / (1024 * 1024); - - #ifdef BX_USE_EBDA_TABLES - ebda_cur_addr = align(ebda_cur_addr, 16); -@@ -2201,8 +2210,8 @@ void smbios_init(void) - add_struct(smbios_type_4_init(p, cpu_num)); - add_struct(smbios_type_16_init(p, memsize)); - add_struct(smbios_type_17_init(p, memsize)); -- add_struct(smbios_type_19_init(p, memsize)); -- add_struct(smbios_type_20_init(p, memsize)); -+ add_struct(smbios_type_19_init(p, ram_end / (1024 * 1024))); -+ add_struct(smbios_type_20_init(p, ram_end / (1024 * 1024))); - add_struct(smbios_type_32_init(p)); - add_struct(smbios_type_127_init(p)); - diff --git a/pc-bios/bios-pq/0003_kvm-bios-generate-mptable-unconditionally.patch b/pc-bios/bios-pq/0003_kvm-bios-generate-mptable-unconditionally.patch deleted file mode 100644 index 7826a86d0..000000000 --- a/pc-bios/bios-pq/0003_kvm-bios-generate-mptable-unconditionally.patch +++ /dev/null @@ -1,25 +0,0 @@ -generate mptable unconditionally (Avi Kivity) - -VMware ESX requires an mptable even for uniprocessor guests. - -Signed-off-by: Avi Kivity <avi@qumranet.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -Index: bochs/bios/rombios32.c -=================================================================== ---- bochs.orig/bios/rombios32.c -+++ bochs/bios/rombios32.c -@@ -970,11 +970,6 @@ static void mptable_init(void) - int ioapic_id, i, len; - int mp_config_table_size; - --#ifdef BX_QEMU -- if (smp_cpus <= 1) -- return; --#endif -- - #ifdef BX_USE_EBDA_TABLES - mp_config_table = (uint8_t *)(ram_size - ACPI_DATA_SIZE - MPTABLE_MAX_SIZE); - #else - - diff --git a/pc-bios/bios-pq/0004_kvm-bios-resolve-memory-device-roll-over-reporting--issues-with-32g-guests.patch b/pc-bios/bios-pq/0004_kvm-bios-resolve-memory-device-roll-over-reporting--issues-with-32g-guests.patch deleted file mode 100644 index 070d610d3..000000000 --- a/pc-bios/bios-pq/0004_kvm-bios-resolve-memory-device-roll-over-reporting--issues-with-32g-guests.patch +++ /dev/null @@ -1,184 +0,0 @@ -resolve memory device roll over reporting issues with >32G guests (Bill Rieske) - -The field within the Memory Device type 17 is only a word with the MSB being -used to report MB/KB. Thereby, a guest with 32G and greater would report -incorrect memory device information rolling over to 0. - -This presents more than one memory device and associated memory structures -if the memory is larger than 16G - -Signed-off-by: Bill Rieske <brieske@novell.com> -Signed-off-by: Avi Kivity <avi@redhat.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -Index: bochs/bios/rombios32.c -=================================================================== ---- bochs.orig/bios/rombios32.c -+++ bochs/bios/rombios32.c -@@ -381,6 +381,17 @@ int vsnprintf(char *buf, int buflen, con - return buf - buf0; - } - -+int snprintf(char * buf, size_t size, const char *fmt, ...) -+{ -+ va_list args; -+ int i; -+ -+ va_start(args, fmt); -+ i=vsnprintf(buf,size,fmt,args); -+ va_end(args); -+ return i; -+} -+ - void bios_printf(int flags, const char *fmt, ...) - { - va_list ap; -@@ -2039,7 +2050,7 @@ smbios_type_4_init(void *start, unsigned - - /* Type 16 -- Physical Memory Array */ - static void * --smbios_type_16_init(void *start, uint32_t memsize) -+smbios_type_16_init(void *start, uint32_t memsize, int nr_mem_devs) - { - struct smbios_type_16 *p = (struct smbios_type_16*)start; - -@@ -2052,7 +2063,7 @@ smbios_type_16_init(void *start, uint32_ - p->error_correction = 0x01; /* other */ - p->maximum_capacity = memsize * 1024; - p->memory_error_information_handle = 0xfffe; /* none provided */ -- p->number_of_memory_devices = 1; -+ p->number_of_memory_devices = nr_mem_devs; - - start += sizeof(struct smbios_type_16); - *((uint16_t *)start) = 0; -@@ -2062,20 +2073,19 @@ smbios_type_16_init(void *start, uint32_ - - /* Type 17 -- Memory Device */ - static void * --smbios_type_17_init(void *start, uint32_t memory_size_mb) -+smbios_type_17_init(void *start, uint32_t memory_size_mb, int instance) - { - struct smbios_type_17 *p = (struct smbios_type_17 *)start; - - p->header.type = 17; - p->header.length = sizeof(struct smbios_type_17); -- p->header.handle = 0x1100; -+ p->header.handle = 0x1100 + instance; - - p->physical_memory_array_handle = 0x1000; - p->total_width = 64; - p->data_width = 64; -- /* truncate memory_size_mb to 16 bits and clear most significant -- bit [indicates size in MB] */ -- p->size = (uint16_t) memory_size_mb & 0x7fff; -+/* TODO: should assert in case something is wrong ASSERT((memory_size_mb & ~0x7fff) == 0); */ -+ p->size = memory_size_mb; - p->form_factor = 0x09; /* DIMM */ - p->device_set = 0; - p->device_locator_str = 1; -@@ -2084,8 +2094,8 @@ smbios_type_17_init(void *start, uint32_ - p->type_detail = 0; - - start += sizeof(struct smbios_type_17); -- memcpy((char *)start, "DIMM 1", 7); -- start += 7; -+ snprintf(start, 8, "DIMM %d", instance); -+ start += strlen(start) + 1; - *((uint8_t *)start) = 0; - - return start+1; -@@ -2093,16 +2103,16 @@ smbios_type_17_init(void *start, uint32_ - - /* Type 19 -- Memory Array Mapped Address */ - static void * --smbios_type_19_init(void *start, uint32_t memory_size_mb) -+smbios_type_19_init(void *start, uint32_t memory_size_mb, int instance) - { - struct smbios_type_19 *p = (struct smbios_type_19 *)start; - - p->header.type = 19; - p->header.length = sizeof(struct smbios_type_19); -- p->header.handle = 0x1300; -+ p->header.handle = 0x1300 + instance; - -- p->starting_address = 0; -- p->ending_address = (memory_size_mb * 1024) - 1; -+ p->starting_address = instance << 24; -+ p->ending_address = p->starting_address + (memory_size_mb << 10) - 1; - p->memory_array_handle = 0x1000; - p->partition_width = 1; - -@@ -2114,18 +2124,18 @@ smbios_type_19_init(void *start, uint32_ - - /* Type 20 -- Memory Device Mapped Address */ - static void * --smbios_type_20_init(void *start, uint32_t memory_size_mb) -+smbios_type_20_init(void *start, uint32_t memory_size_mb, int instance) - { - struct smbios_type_20 *p = (struct smbios_type_20 *)start; - - p->header.type = 20; - p->header.length = sizeof(struct smbios_type_20); -- p->header.handle = 0x1400; -+ p->header.handle = 0x1400 + instance; - -- p->starting_address = 0; -- p->ending_address = (memory_size_mb * 1024) - 1; -- p->memory_device_handle = 0x1100; -- p->memory_array_mapped_address_handle = 0x1300; -+ p->starting_address = instance << 24; -+ p->ending_address = p->starting_address + (memory_size_mb << 10) - 1; -+ p->memory_device_handle = 0x1100 + instance; -+ p->memory_array_mapped_address_handle = 0x1300 + instance; - p->partition_row_position = 1; - p->interleave_position = 0; - p->interleaved_data_depth = 0; -@@ -2176,6 +2186,7 @@ void smbios_init(void) - char *start, *p, *q; - int memsize = (ram_end == ram_size) ? ram_size / (1024 * 1024) : - (ram_end - (1ull << 32) + ram_size) / (1024 * 1024); -+ int i, nr_mem_devs; - - #ifdef BX_USE_EBDA_TABLES - ebda_cur_addr = align(ebda_cur_addr, 16); -@@ -2187,23 +2198,32 @@ void smbios_init(void) - - p = (char *)start + sizeof(struct smbios_entry_point); - --#define add_struct(fn) { \ -+#define add_struct(fn) do{ \ - q = (fn); \ - nr_structs++; \ - if ((q - p) > max_struct_size) \ - max_struct_size = q - p; \ - p = q; \ --} -+}while (0) - - add_struct(smbios_type_0_init(p)); - add_struct(smbios_type_1_init(p)); - add_struct(smbios_type_3_init(p)); - for (cpu_num = 1; cpu_num <= smp_cpus; cpu_num++) - add_struct(smbios_type_4_init(p, cpu_num)); -- add_struct(smbios_type_16_init(p, memsize)); -- add_struct(smbios_type_17_init(p, memsize)); -- add_struct(smbios_type_19_init(p, ram_end / (1024 * 1024))); -- add_struct(smbios_type_20_init(p, ram_end / (1024 * 1024))); -+ -+ /* Each 'memory device' covers up to 16GB of address space. */ -+ nr_mem_devs = (memsize + 0x3fff) >> 14; -+ add_struct(smbios_type_16_init(p, memsize, nr_mem_devs)); -+ for ( i = 0; i < nr_mem_devs; i++ ) -+ { -+ uint32_t dev_memsize = ((i == (nr_mem_devs - 1)) -+ ? (memsize & 0x3fff) : 0x4000); -+ add_struct(smbios_type_17_init(p, dev_memsize, i)); -+ add_struct(smbios_type_19_init(p, dev_memsize, i)); -+ add_struct(smbios_type_20_init(p, dev_memsize, i)); -+ } -+ - add_struct(smbios_type_32_init(p)); - add_struct(smbios_type_127_init(p)); - - - diff --git a/pc-bios/bios-pq/0005_kvm-bios-fix-smbios-memory-device-length-boundary--condition.patch b/pc-bios/bios-pq/0005_kvm-bios-fix-smbios-memory-device-length-boundary--condition.patch deleted file mode 100644 index e4ec229ba..000000000 --- a/pc-bios/bios-pq/0005_kvm-bios-fix-smbios-memory-device-length-boundary--condition.patch +++ /dev/null @@ -1,23 +0,0 @@ -fix smbios memory device length boundary condition (Bill Rieske) - -dev_memsize ends up 0 when it shouldn't be on 16G boundary conditions. - -Signed-off-by: Bill Rieske <brieske@novell.com> -Signed-off-by: Avi Kivity <avi@redhat.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -Index: bochs/bios/rombios32.c -=================================================================== ---- bochs.orig/bios/rombios32.c -+++ bochs/bios/rombios32.c -@@ -2218,7 +2218,7 @@ void smbios_init(void) - for ( i = 0; i < nr_mem_devs; i++ ) - { - uint32_t dev_memsize = ((i == (nr_mem_devs - 1)) -- ? (memsize & 0x3fff) : 0x4000); -+ ? (((memsize-1) & 0x3fff)+1) : 0x4000); - add_struct(smbios_type_17_init(p, dev_memsize, i)); - add_struct(smbios_type_19_init(p, dev_memsize, i)); - add_struct(smbios_type_20_init(p, dev_memsize, i)); - - diff --git a/pc-bios/bios-pq/0006_qemu-bios-use-preprocessor-for-pci-link-routing.patch b/pc-bios/bios-pq/0006_qemu-bios-use-preprocessor-for-pci-link-routing.patch deleted file mode 100644 index 9a2eef4c6..000000000 --- a/pc-bios/bios-pq/0006_qemu-bios-use-preprocessor-for-pci-link-routing.patch +++ /dev/null @@ -1,73 +0,0 @@ -qemu: bios: use preprocessor for pci link routing (Avi Kivity) - -Signed-off-by: Avi Kivity <avi@qumranet.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -Index: bochs/bios/acpi-dsdt.dsl -=================================================================== ---- bochs.orig/bios/acpi-dsdt.dsl -+++ bochs/bios/acpi-dsdt.dsl -@@ -47,42 +47,22 @@ DefinitionBlock ( - section 6.2.8.1 */ - /* Note: we provide the same info as the PCI routing - table of the Bochs BIOS */ -- -- // PCI Slot 0 -- Package() {0x0000ffff, 0, LNKD, 0}, -- Package() {0x0000ffff, 1, LNKA, 0}, -- Package() {0x0000ffff, 2, LNKB, 0}, -- Package() {0x0000ffff, 3, LNKC, 0}, -- -- // PCI Slot 1 -- Package() {0x0001ffff, 0, LNKA, 0}, -- Package() {0x0001ffff, 1, LNKB, 0}, -- Package() {0x0001ffff, 2, LNKC, 0}, -- Package() {0x0001ffff, 3, LNKD, 0}, -- -- // PCI Slot 2 -- Package() {0x0002ffff, 0, LNKB, 0}, -- Package() {0x0002ffff, 1, LNKC, 0}, -- Package() {0x0002ffff, 2, LNKD, 0}, -- Package() {0x0002ffff, 3, LNKA, 0}, -- -- // PCI Slot 3 -- Package() {0x0003ffff, 0, LNKC, 0}, -- Package() {0x0003ffff, 1, LNKD, 0}, -- Package() {0x0003ffff, 2, LNKA, 0}, -- Package() {0x0003ffff, 3, LNKB, 0}, -- -- // PCI Slot 4 -- Package() {0x0004ffff, 0, LNKD, 0}, -- Package() {0x0004ffff, 1, LNKA, 0}, -- Package() {0x0004ffff, 2, LNKB, 0}, -- Package() {0x0004ffff, 3, LNKC, 0}, -- -- // PCI Slot 5 -- Package() {0x0005ffff, 0, LNKA, 0}, -- Package() {0x0005ffff, 1, LNKB, 0}, -- Package() {0x0005ffff, 2, LNKC, 0}, -- Package() {0x0005ffff, 3, LNKD, 0}, -+#define prt_slot(nr, lnk0, lnk1, lnk2, lnk3) \ -+ Package() { nr##ffff, 0, lnk0, 0 }, \ -+ Package() { nr##ffff, 1, lnk1, 0 }, \ -+ Package() { nr##ffff, 2, lnk2, 0 }, \ -+ Package() { nr##ffff, 3, lnk3, 0 } -+ -+#define prt_slot0(nr) prt_slot(nr, LNKD, LNKA, LNKB, LNKC) -+#define prt_slot1(nr) prt_slot(nr, LNKA, LNKB, LNKC, LNKD) -+#define prt_slot2(nr) prt_slot(nr, LNKB, LNKC, LNKD, LNKA) -+#define prt_slot3(nr) prt_slot(nr, LNKC, LNKD, LNKA, LNKB) -+ prt_slot0(0x0000), -+ prt_slot1(0x0001), -+ prt_slot2(0x0002), -+ prt_slot3(0x0003), -+ prt_slot0(0x0004), -+ prt_slot1(0x0005), - }) - - Name (_CRS, ResourceTemplate () - --- - - - diff --git a/pc-bios/bios-pq/0007_bios-add-26-pci-slots,-bringing-the-total-to-32.patch b/pc-bios/bios-pq/0007_bios-add-26-pci-slots,-bringing-the-total-to-32.patch deleted file mode 100644 index 7cdc3d8b2..000000000 --- a/pc-bios/bios-pq/0007_bios-add-26-pci-slots,-bringing-the-total-to-32.patch +++ /dev/null @@ -1,49 +0,0 @@ -bios: add 26 pci slots, bringing the total to 32 (Avi Kivity) - -lack of pci slots causes Windows to complain when installing too many devices. - -Signed-off-by: Avi Kivity <avi@qumranet.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -Index: bochs/bios/acpi-dsdt.dsl -=================================================================== ---- bochs.orig/bios/acpi-dsdt.dsl -+++ bochs/bios/acpi-dsdt.dsl -@@ -63,6 +63,32 @@ DefinitionBlock ( - prt_slot3(0x0003), - prt_slot0(0x0004), - prt_slot1(0x0005), -+ prt_slot2(0x0006), -+ prt_slot3(0x0007), -+ prt_slot0(0x0008), -+ prt_slot1(0x0009), -+ prt_slot2(0x000a), -+ prt_slot3(0x000b), -+ prt_slot0(0x000c), -+ prt_slot1(0x000d), -+ prt_slot2(0x000e), -+ prt_slot3(0x000f), -+ prt_slot0(0x0010), -+ prt_slot1(0x0011), -+ prt_slot2(0x0012), -+ prt_slot3(0x0013), -+ prt_slot0(0x0014), -+ prt_slot1(0x0015), -+ prt_slot2(0x0016), -+ prt_slot3(0x0017), -+ prt_slot0(0x0018), -+ prt_slot1(0x0019), -+ prt_slot2(0x001a), -+ prt_slot3(0x001b), -+ prt_slot0(0x001c), -+ prt_slot1(0x001d), -+ prt_slot2(0x001e), -+ prt_slot3(0x001f), - }) - - Name (_CRS, ResourceTemplate () - --- - - - diff --git a/pc-bios/bios-pq/0008_qemu-bios-provide-gpe-_l0x-methods.patch b/pc-bios/bios-pq/0008_qemu-bios-provide-gpe-_l0x-methods.patch deleted file mode 100644 index 554a3dbbc..000000000 --- a/pc-bios/bios-pq/0008_qemu-bios-provide-gpe-_l0x-methods.patch +++ /dev/null @@ -1,92 +0,0 @@ -qemu: bios: provide gpe _L0x methods (Glauber Costa) - -provide methods for gpe blk 0, even though they do nothing atm - -Signed-off-by: Glauber Costa <gcosta@redhat.com> -Signed-off-by: Avi Kivity <avi@qumranet.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -Index: bochs/bios/acpi-dsdt.dsl -=================================================================== ---- bochs.orig/bios/acpi-dsdt.dsl -+++ bochs/bios/acpi-dsdt.dsl -@@ -597,4 +597,59 @@ DefinitionBlock ( - Zero, /* reserved */ - Zero /* reserved */ - }) -+ -+ Scope (\_GPE) -+ { -+ Name(_HID, "ACPI0006") -+ -+ Method(_L00) { -+ Return(0x01) -+ } -+ Method(_L01) { -+ Return(0x01) -+ } -+ Method(_L02) { -+ Return(0x01) -+ } -+ Method(_L03) { -+ Return(0x01) -+ } -+ Method(_L04) { -+ Return(0x01) -+ } -+ Method(_L05) { -+ Return(0x01) -+ } -+ Method(_L06) { -+ Return(0x01) -+ } -+ Method(_L07) { -+ Return(0x01) -+ } -+ Method(_L08) { -+ Return(0x01) -+ } -+ Method(_L09) { -+ Return(0x01) -+ } -+ Method(_L0A) { -+ Return(0x01) -+ } -+ Method(_L0B) { -+ Return(0x01) -+ } -+ Method(_L0C) { -+ Return(0x01) -+ } -+ Method(_L0D) { -+ Return(0x01) -+ } -+ Method(_L0E) { -+ Return(0x01) -+ } -+ Method(_L0F) { -+ Return(0x01) -+ } -+ } -+ - } -Index: bochs/bios/rombios32.c -=================================================================== ---- bochs.orig/bios/rombios32.c -+++ bochs/bios/rombios32.c -@@ -1647,6 +1647,8 @@ void acpi_bios_init(void) - fadt->pm_tmr_len = 4; - fadt->plvl2_lat = cpu_to_le16(0xfff); // C2 state not supported - fadt->plvl3_lat = cpu_to_le16(0xfff); // C3 state not supported -+ fadt->gpe0_blk = cpu_to_le32(0xafe0); -+ fadt->gpe0_blk_len = 4; - /* WBINVD + PROC_C1 + PWR_BUTTON + SLP_BUTTON + FIX_RTC */ - fadt->flags = cpu_to_le32((1 << 0) | (1 << 2) | (1 << 4) | (1 << 5) | (1 << 6)); - acpi_build_table_header((struct acpi_table_header *)fadt, "FACP", - --- - - - - - diff --git a/pc-bios/bios-pq/0009_qemu-bios-pci-hotplug-support.patch b/pc-bios/bios-pq/0009_qemu-bios-pci-hotplug-support.patch deleted file mode 100644 index f55a335b3..000000000 --- a/pc-bios/bios-pq/0009_qemu-bios-pci-hotplug-support.patch +++ /dev/null @@ -1,128 +0,0 @@ -qemu: bios: pci hotplug support (Marcelo Tosatti) - -Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -Index: bochs/bios/acpi-dsdt.dsl -=================================================================== ---- bochs.orig/bios/acpi-dsdt.dsl -+++ bochs/bios/acpi-dsdt.dsl -@@ -91,6 +91,61 @@ DefinitionBlock ( - prt_slot3(0x001f), - }) - -+ OperationRegion(PCST, SystemIO, 0xae00, 0x08) -+ Field (PCST, DWordAcc, NoLock, WriteAsZeros) -+ { -+ PCIU, 32, -+ PCID, 32, -+ } -+ -+ OperationRegion(SEJ, SystemIO, 0xae08, 0x04) -+ Field (SEJ, DWordAcc, NoLock, WriteAsZeros) -+ { -+ B0EJ, 32, -+ } -+ -+#define hotplug_slot(name, nr) \ -+ Device (S##name) { \ -+ Name (_ADR, nr##0000) \ -+ Method (_EJ0,1) { \ -+ Store(ShiftLeft(1, nr), B0EJ) \ -+ Return (0x0) \ -+ } \ -+ Name (_SUN, name) \ -+ } -+ -+ hotplug_slot(1, 0x0001) -+ hotplug_slot(2, 0x0002) -+ hotplug_slot(3, 0x0003) -+ hotplug_slot(4, 0x0004) -+ hotplug_slot(5, 0x0005) -+ hotplug_slot(6, 0x0006) -+ hotplug_slot(7, 0x0007) -+ hotplug_slot(8, 0x0008) -+ hotplug_slot(9, 0x0009) -+ hotplug_slot(10, 0x000a) -+ hotplug_slot(11, 0x000b) -+ hotplug_slot(12, 0x000c) -+ hotplug_slot(13, 0x000d) -+ hotplug_slot(14, 0x000e) -+ hotplug_slot(15, 0x000f) -+ hotplug_slot(16, 0x0010) -+ hotplug_slot(17, 0x0011) -+ hotplug_slot(18, 0x0012) -+ hotplug_slot(19, 0x0013) -+ hotplug_slot(20, 0x0014) -+ hotplug_slot(21, 0x0015) -+ hotplug_slot(22, 0x0016) -+ hotplug_slot(23, 0x0017) -+ hotplug_slot(24, 0x0018) -+ hotplug_slot(25, 0x0019) -+ hotplug_slot(26, 0x001a) -+ hotplug_slot(27, 0x001b) -+ hotplug_slot(28, 0x001c) -+ hotplug_slot(29, 0x001d) -+ hotplug_slot(30, 0x001e) -+ hotplug_slot(31, 0x001f) -+ - Name (_CRS, ResourceTemplate () - { - WordBusNumber (ResourceProducer, MinFixed, MaxFixed, PosDecode, -@@ -605,8 +660,50 @@ DefinitionBlock ( - Method(_L00) { - Return(0x01) - } -+ -+#define gen_pci_hotplug(nr) \ -+ If (And(\_SB.PCI0.PCIU, ShiftLeft(1, nr))) { \ -+ Notify(\_SB.PCI0.S##nr, 1) \ -+ } \ -+ If (And(\_SB.PCI0.PCID, ShiftLeft(1, nr))) { \ -+ Notify(\_SB.PCI0.S##nr, 3) \ -+ } -+ - Method(_L01) { -- Return(0x01) -+ gen_pci_hotplug(1) -+ gen_pci_hotplug(2) -+ gen_pci_hotplug(3) -+ gen_pci_hotplug(4) -+ gen_pci_hotplug(5) -+ gen_pci_hotplug(6) -+ gen_pci_hotplug(7) -+ gen_pci_hotplug(8) -+ gen_pci_hotplug(9) -+ gen_pci_hotplug(10) -+ gen_pci_hotplug(11) -+ gen_pci_hotplug(12) -+ gen_pci_hotplug(13) -+ gen_pci_hotplug(14) -+ gen_pci_hotplug(15) -+ gen_pci_hotplug(16) -+ gen_pci_hotplug(17) -+ gen_pci_hotplug(18) -+ gen_pci_hotplug(19) -+ gen_pci_hotplug(20) -+ gen_pci_hotplug(21) -+ gen_pci_hotplug(22) -+ gen_pci_hotplug(23) -+ gen_pci_hotplug(24) -+ gen_pci_hotplug(25) -+ gen_pci_hotplug(26) -+ gen_pci_hotplug(27) -+ gen_pci_hotplug(28) -+ gen_pci_hotplug(29) -+ gen_pci_hotplug(30) -+ gen_pci_hotplug(31) -+ -+ Return (0x01) -+ - } - Method(_L02) { - Return(0x01) - --- - - - diff --git a/pc-bios/bios-pq/0010_bios-mark-the-acpi-sci-interrupt-as-connected-to-irq-9.patch b/pc-bios/bios-pq/0010_bios-mark-the-acpi-sci-interrupt-as-connected-to-irq-9.patch deleted file mode 100644 index bd7403f88..000000000 --- a/pc-bios/bios-pq/0010_bios-mark-the-acpi-sci-interrupt-as-connected-to-irq-9.patch +++ /dev/null @@ -1,26 +0,0 @@ -bios: mark the acpi sci interrupt as connected to irq 9 (Avi Kivity) - -Due to a chipset bug, the sci interrupt is hardwired to irq 9. Set the -pci interrupt line register accordingly. - -Signed-off-by: Avi Kivity <avi@qumranet.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -Index: bochs/bios/rombios32.c -=================================================================== ---- bochs.orig/bios/rombios32.c -+++ bochs/bios/rombios32.c -@@ -981,6 +981,8 @@ static void pci_bios_init_device(PCIDevi - /* PIIX4 Power Management device (for ACPI) */ - pm_io_base = PM_IO_BASE; - smb_io_base = SMB_IO_BASE; -+ // acpi sci is hardwired to 9 -+ pci_config_writeb(d, PCI_INTERRUPT_LINE, 9); - pm_sci_int = pci_config_readb(d, PCI_INTERRUPT_LINE); - piix4_pm_enable(d); - acpi_enabled = 1; - --- - - - diff --git a/pc-bios/bios-pq/0011_read-additional-acpi-tables-from-a-vm.patch b/pc-bios/bios-pq/0011_read-additional-acpi-tables-from-a-vm.patch deleted file mode 100644 index 1aa09fdd2..000000000 --- a/pc-bios/bios-pq/0011_read-additional-acpi-tables-from-a-vm.patch +++ /dev/null @@ -1,150 +0,0 @@ -Read additional ACPI tables from a VM (Gleb Natapov) - -Signed-off-by: Gleb Natapov <gleb@redhat.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -diff --git a/bios/rombios32.c b/bios/rombios32.c -index 27c5952..7be4216 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -469,6 +469,8 @@ void wrmsr_smp(uint32_t index, uint64_t val) - #define QEMU_CFG_SIGNATURE 0x00 - #define QEMU_CFG_ID 0x01 - #define QEMU_CFG_UUID 0x02 -+#define QEMU_CFG_ARCH_LOCAL 0x8000 -+#define QEMU_CFG_ACPI_TABLES (QEMU_CFG_ARCH_LOCAL + 0) - - int qemu_cfg_port; - -@@ -496,6 +498,27 @@ void qemu_cfg_read(uint8_t *buf, int len) - while (len--) - *(buf++) = inb(QEMU_CFG_DATA_PORT); - } -+ -+static uint16_t acpi_additional_tables(void) -+{ -+ uint16_t cnt; -+ -+ qemu_cfg_select(QEMU_CFG_ACPI_TABLES); -+ qemu_cfg_read((uint8_t*)&cnt, sizeof(cnt)); -+ -+ return cnt; -+} -+ -+static int acpi_load_table(int i, uint32_t addr, uint16_t *len) -+{ -+ qemu_cfg_read((uint8_t*)len, sizeof(*len)); -+ -+ if (!*len) -+ return -1; -+ -+ qemu_cfg_read((uint8_t*)addr, *len); -+ return 0; -+} - #endif - - void uuid_probe(void) -@@ -1550,8 +1573,8 @@ void acpi_bios_init(void) - uint32_t hpet_addr; - #endif - uint32_t base_addr, rsdt_addr, fadt_addr, addr, facs_addr, dsdt_addr, ssdt_addr; -- uint32_t acpi_tables_size, madt_addr, madt_size; -- int i; -+ uint32_t acpi_tables_size, madt_addr, madt_size, rsdt_size; -+ uint16_t i, external_tables; - - /* reserve memory space for tables */ - #ifdef BX_USE_EBDA_TABLES -@@ -1564,10 +1587,17 @@ void acpi_bios_init(void) - bios_table_cur_addr += sizeof(*rsdp); - #endif - -+#ifdef BX_QEMU -+ external_tables = acpi_additional_tables(); -+#else -+ external_tables = 0; -+#endif -+ - addr = base_addr = ram_size - ACPI_DATA_SIZE; - rsdt_addr = addr; - rsdt = (void *)(addr); -- addr += sizeof(*rsdt); -+ rsdt_size = sizeof(*rsdt) + external_tables * 4; -+ addr += rsdt_size; - - fadt_addr = addr; - fadt = (void *)(addr); -@@ -1606,12 +1636,6 @@ void acpi_bios_init(void) - addr += sizeof(*hpet); - #endif - -- acpi_tables_size = addr - base_addr; -- -- BX_INFO("ACPI tables: RSDP addr=0x%08lx ACPI DATA addr=0x%08lx size=0x%x\n", -- (unsigned long)rsdp, -- (unsigned long)rsdt, acpi_tables_size); -- - /* RSDP */ - memset(rsdp, 0, sizeof(*rsdp)); - memcpy(rsdp->signature, "RSD PTR ", 8); -@@ -1623,17 +1647,6 @@ void acpi_bios_init(void) - rsdp->rsdt_physical_address = cpu_to_le32(rsdt_addr); - rsdp->checksum = acpi_checksum((void *)rsdp, 20); - -- /* RSDT */ -- memset(rsdt, 0, sizeof(*rsdt)); -- rsdt->table_offset_entry[0] = cpu_to_le32(fadt_addr); -- rsdt->table_offset_entry[1] = cpu_to_le32(madt_addr); -- rsdt->table_offset_entry[2] = cpu_to_le32(ssdt_addr); --#ifdef BX_QEMU -- rsdt->table_offset_entry[3] = cpu_to_le32(hpet_addr); --#endif -- acpi_build_table_header((struct acpi_table_header *)rsdt, -- "RSDT", sizeof(*rsdt), 1); -- - /* FADT */ - memset(fadt, 0, sizeof(*fadt)); - fadt->firmware_ctrl = cpu_to_le32(facs_addr); -@@ -1710,6 +1723,7 @@ void acpi_bios_init(void) - "APIC", madt_size, 1); - } - -+ memset(rsdt, 0, rsdt_size); - #ifdef BX_QEMU - /* HPET */ - memset(hpet, 0, sizeof(*hpet)); -@@ -1720,7 +1734,34 @@ void acpi_bios_init(void) - hpet->addr.address = cpu_to_le32(ACPI_HPET_ADDRESS); - acpi_build_table_header((struct acpi_table_header *)hpet, - "HPET", sizeof(*hpet), 1); -+ -+ acpi_additional_tables(); /* resets cfg to required entry */ -+ for(i = 0; i < external_tables; i++) { -+ uint16_t len; -+ if(acpi_load_table(i, addr, &len) < 0) -+ BX_PANIC("Failed to load ACPI table from QEMU\n"); -+ rsdt->table_offset_entry[i+4] = cpu_to_le32(addr); -+ addr += len; -+ if(addr >= ram_size) -+ BX_PANIC("ACPI table overflow\n"); -+ } -+#endif -+ -+ /* RSDT */ -+ rsdt->table_offset_entry[0] = cpu_to_le32(fadt_addr); -+ rsdt->table_offset_entry[1] = cpu_to_le32(madt_addr); -+ rsdt->table_offset_entry[2] = cpu_to_le32(ssdt_addr); -+#ifdef BX_QEMU -+ rsdt->table_offset_entry[3] = cpu_to_le32(hpet_addr); - #endif -+ acpi_build_table_header((struct acpi_table_header *)rsdt, -+ "RSDT", rsdt_size, 1); -+ -+ acpi_tables_size = addr - base_addr; -+ -+ BX_INFO("ACPI tables: RSDP addr=0x%08lx ACPI DATA addr=0x%08lx size=0x%x\n", -+ (unsigned long)rsdp, -+ (unsigned long)rsdt, acpi_tables_size); - - } - diff --git a/pc-bios/bios-pq/0012-load-smbios-entries-and-files-from-qemu.patch b/pc-bios/bios-pq/0012-load-smbios-entries-and-files-from-qemu.patch deleted file mode 100644 index e7a120411..000000000 --- a/pc-bios/bios-pq/0012-load-smbios-entries-and-files-from-qemu.patch +++ /dev/null @@ -1,470 +0,0 @@ -qemu:bios: Load SMBIOS entries and files from qemu (Alex Williamson) - -Allow SMBIOS fields to be overridden and entries replaced by those -read from qemu. - -Signed-off-by: Alex Williamson <alex.williamson@hp.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -diff --git a/bios/rombios32.c b/bios/rombios32.c -index 7be4216..1a1ed64 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -441,7 +441,6 @@ uint32_t cpuid_features; - uint32_t cpuid_ext_features; - unsigned long ram_size; - uint64_t ram_end; --uint8_t bios_uuid[16]; - #ifdef BX_USE_EBDA_TABLES - unsigned long ebda_cur_addr; - #endif -@@ -471,6 +470,7 @@ void wrmsr_smp(uint32_t index, uint64_t val) - #define QEMU_CFG_UUID 0x02 - #define QEMU_CFG_ARCH_LOCAL 0x8000 - #define QEMU_CFG_ACPI_TABLES (QEMU_CFG_ARCH_LOCAL + 0) -+#define QEMU_CFG_SMBIOS_ENTRIES (QEMU_CFG_ARCH_LOCAL + 1) - - int qemu_cfg_port; - -@@ -519,19 +519,17 @@ static int acpi_load_table(int i, uint32_t addr, uint16_t *len) - qemu_cfg_read((uint8_t*)addr, *len); - return 0; - } --#endif - --void uuid_probe(void) -+static uint16_t smbios_entries(void) - { --#ifdef BX_QEMU -- if(qemu_cfg_port) { -- qemu_cfg_select(QEMU_CFG_UUID); -- qemu_cfg_read(bios_uuid, 16); -- return; -- } --#endif -- memset(bios_uuid, 0, 16); -+ uint16_t cnt; -+ -+ qemu_cfg_select(QEMU_CFG_SMBIOS_ENTRIES); -+ qemu_cfg_read((uint8_t*)&cnt, sizeof(cnt)); -+ -+ return cnt; - } -+#endif - - void cpu_probe(void) - { -@@ -1963,21 +1961,105 @@ smbios_entry_point_init(void *start, - ep->intermediate_checksum = -sum; - } - -+struct smbios_header { -+ uint16_t length; -+ uint8_t type; -+} __attribute__((__packed__)); -+ -+struct smbios_field { -+ struct smbios_header header; -+ uint8_t type; -+ uint16_t offset; -+ uint8_t data[]; -+} __attribute__((__packed__)); -+ -+struct smbios_table { -+ struct smbios_header header; -+ uint8_t data[]; -+} __attribute__((__packed__)); -+ -+#define SMBIOS_FIELD_ENTRY 0 -+#define SMBIOS_TABLE_ENTRY 1 -+ -+static size_t -+smbios_load_field(int type, size_t offset, void *addr) -+{ -+#ifdef BX_QEMU -+ int i; -+ -+ for (i = smbios_entries(); i > 0; i--) { -+ struct smbios_field field; -+ -+ qemu_cfg_read((uint8_t *)&field, sizeof(struct smbios_header)); -+ field.header.length -= sizeof(struct smbios_header); -+ -+ if (field.header.type != SMBIOS_FIELD_ENTRY) { -+ while (field.header.length--) -+ inb(QEMU_CFG_DATA_PORT); -+ continue; -+ } -+ -+ qemu_cfg_read((uint8_t *)&field.type, -+ sizeof(field) - sizeof(struct smbios_header)); -+ field.header.length -= sizeof(field) - sizeof(struct smbios_header); -+ -+ if (field.type != type || field.offset != offset) { -+ while (field.header.length--) -+ inb(QEMU_CFG_DATA_PORT); -+ continue; -+ } -+ -+ qemu_cfg_read(addr, field.header.length); -+ return (size_t)field.header.length; -+ } -+#endif -+ return 0; -+} -+ -+#define load_str_field_with_default(type, field, def) do { \ -+ size = smbios_load_field(type, offsetof(struct smbios_type_##type, \ -+ field), end); \ -+ if (size > 0) { \ -+ end += size; \ -+ } else { \ -+ memcpy(end, def, sizeof(def)); \ -+ end += sizeof(def); \ -+ } \ -+ p->field = ++str_index; \ -+} while (0) -+ -+#define load_str_field_or_skip(type, field) do { \ -+ size = smbios_load_field(type, offsetof(struct smbios_type_##type, \ -+ field), end); \ -+ if (size > 0) { \ -+ end += size; \ -+ p->field = ++str_index; \ -+ } else { \ -+ p->field = 0; \ -+ } \ -+} while (0) -+ - /* Type 0 -- BIOS Information */ - #define RELEASE_DATE_STR "01/01/2007" - static void * --smbios_type_0_init(void *start) -+smbios_init_type_0(void *start) - { - struct smbios_type_0 *p = (struct smbios_type_0 *)start; -+ char *end = (char *)start + sizeof(struct smbios_type_0); -+ size_t size; -+ int str_index = 0; - - p->header.type = 0; - p->header.length = sizeof(struct smbios_type_0); - p->header.handle = 0; - -- p->vendor_str = 1; -- p->bios_version_str = 1; -+ load_str_field_with_default(0, vendor_str, BX_APPNAME); -+ load_str_field_with_default(0, bios_version_str, BX_APPNAME); -+ - p->bios_starting_address_segment = 0xe800; -- p->bios_release_date_str = 2; -+ -+ load_str_field_with_default(0, bios_release_date_str, RELEASE_DATE_STR); -+ - p->bios_rom_size = 0; /* FIXME */ - - memset(p->bios_characteristics, 0, 8); -@@ -1985,50 +2067,66 @@ smbios_type_0_init(void *start) - p->bios_characteristics_extension_bytes[0] = 0; - p->bios_characteristics_extension_bytes[1] = 0; - -- p->system_bios_major_release = 1; -- p->system_bios_minor_release = 0; -+ if (!smbios_load_field(0, offsetof(struct smbios_type_0, -+ system_bios_major_release), -+ &p->system_bios_major_release)) -+ p->system_bios_major_release = 1; -+ -+ if (!smbios_load_field(0, offsetof(struct smbios_type_0, -+ system_bios_minor_release), -+ &p->system_bios_minor_release)) -+ p->system_bios_minor_release = 0; -+ - p->embedded_controller_major_release = 0xff; - p->embedded_controller_minor_release = 0xff; - -- start += sizeof(struct smbios_type_0); -- memcpy((char *)start, BX_APPNAME, sizeof(BX_APPNAME)); -- start += sizeof(BX_APPNAME); -- memcpy((char *)start, RELEASE_DATE_STR, sizeof(RELEASE_DATE_STR)); -- start += sizeof(RELEASE_DATE_STR); -- *((uint8_t *)start) = 0; -+ *end = 0; -+ end++; - -- return start+1; -+ return end; - } - - /* Type 1 -- System Information */ - static void * --smbios_type_1_init(void *start) -+smbios_init_type_1(void *start) - { - struct smbios_type_1 *p = (struct smbios_type_1 *)start; -+ char *end = (char *)start + sizeof(struct smbios_type_1); -+ size_t size; -+ int str_index = 0; -+ - p->header.type = 1; - p->header.length = sizeof(struct smbios_type_1); - p->header.handle = 0x100; - -- p->manufacturer_str = 0; -- p->product_name_str = 0; -- p->version_str = 0; -- p->serial_number_str = 0; -+ load_str_field_or_skip(1, manufacturer_str); -+ load_str_field_or_skip(1, product_name_str); -+ load_str_field_or_skip(1, version_str); -+ load_str_field_or_skip(1, serial_number_str); - -- memcpy(p->uuid, bios_uuid, 16); -+ size = smbios_load_field(1, offsetof(struct smbios_type_1, -+ uuid), &p->uuid); -+ if (size == 0) -+ memset(p->uuid, 0, 16); - - p->wake_up_type = 0x06; /* power switch */ -- p->sku_number_str = 0; -- p->family_str = 0; - -- start += sizeof(struct smbios_type_1); -- *((uint16_t *)start) = 0; -+ load_str_field_or_skip(1, sku_number_str); -+ load_str_field_or_skip(1, family_str); - -- return start+2; -+ *end = 0; -+ end++; -+ if (!str_index) { -+ *end = 0; -+ end++; -+ } -+ -+ return end; - } - - /* Type 3 -- System Enclosure */ - static void * --smbios_type_3_init(void *start) -+smbios_init_type_3(void *start) - { - struct smbios_type_3 *p = (struct smbios_type_3 *)start; - -@@ -2058,7 +2156,7 @@ smbios_type_3_init(void *start) - - /* Type 4 -- Processor Information */ - static void * --smbios_type_4_init(void *start, unsigned int cpu_number) -+smbios_init_type_4(void *start, unsigned int cpu_number) - { - struct smbios_type_4 *p = (struct smbios_type_4 *)start; - -@@ -2098,7 +2196,7 @@ smbios_type_4_init(void *start, unsigned int cpu_number) - - /* Type 16 -- Physical Memory Array */ - static void * --smbios_type_16_init(void *start, uint32_t memsize, int nr_mem_devs) -+smbios_init_type_16(void *start, uint32_t memsize, int nr_mem_devs) - { - struct smbios_type_16 *p = (struct smbios_type_16*)start; - -@@ -2121,7 +2219,7 @@ smbios_type_16_init(void *start, uint32_t memsize, int nr_mem_devs) - - /* Type 17 -- Memory Device */ - static void * --smbios_type_17_init(void *start, uint32_t memory_size_mb, int instance) -+smbios_init_type_17(void *start, uint32_t memory_size_mb, int instance) - { - struct smbios_type_17 *p = (struct smbios_type_17 *)start; - -@@ -2151,7 +2249,7 @@ smbios_type_17_init(void *start, uint32_t memory_size_mb, int instance) - - /* Type 19 -- Memory Array Mapped Address */ - static void * --smbios_type_19_init(void *start, uint32_t memory_size_mb, int instance) -+smbios_init_type_19(void *start, uint32_t memory_size_mb, int instance) - { - struct smbios_type_19 *p = (struct smbios_type_19 *)start; - -@@ -2172,7 +2270,7 @@ smbios_type_19_init(void *start, uint32_t memory_size_mb, int instance) - - /* Type 20 -- Memory Device Mapped Address */ - static void * --smbios_type_20_init(void *start, uint32_t memory_size_mb, int instance) -+smbios_init_type_20(void *start, uint32_t memory_size_mb, int instance) - { - struct smbios_type_20 *p = (struct smbios_type_20 *)start; - -@@ -2196,7 +2294,7 @@ smbios_type_20_init(void *start, uint32_t memory_size_mb, int instance) - - /* Type 32 -- System Boot Information */ - static void * --smbios_type_32_init(void *start) -+smbios_init_type_32(void *start) - { - struct smbios_type_32 *p = (struct smbios_type_32 *)start; - -@@ -2214,7 +2312,7 @@ smbios_type_32_init(void *start) - - /* Type 127 -- End of Table */ - static void * --smbios_type_127_init(void *start) -+smbios_init_type_127(void *start) - { - struct smbios_type_127 *p = (struct smbios_type_127 *)start; - -@@ -2228,6 +2326,78 @@ smbios_type_127_init(void *start) - return start + 2; - } - -+static int -+smbios_load_external(int type, char **p, unsigned *nr_structs, -+ unsigned *max_struct_size) -+{ -+#ifdef BX_QEMU -+ static uint64_t used_bitmap[4] = { 0 }; -+ char *start = *p; -+ int i; -+ -+ /* Check if we've already reported these tables */ -+ if (used_bitmap[(type >> 6) & 0x3] & (1ULL << (type & 0x3f))) -+ return 1; -+ -+ /* Don't introduce spurious end markers */ -+ if (type == 127) -+ return 0; -+ -+ for (i = smbios_entries(); i > 0; i--) { -+ struct smbios_table table; -+ struct smbios_structure_header *header = (void *)*p; -+ int string; -+ -+ qemu_cfg_read((uint8_t *)&table, sizeof(struct smbios_header)); -+ table.header.length -= sizeof(struct smbios_header); -+ -+ if (table.header.type != SMBIOS_TABLE_ENTRY) { -+ while (table.header.length--) -+ inb(QEMU_CFG_DATA_PORT); -+ continue; -+ } -+ -+ qemu_cfg_read((uint8_t *)*p, sizeof(struct smbios_structure_header)); -+ table.header.length -= sizeof(struct smbios_structure_header); -+ -+ if (header->type != type) { -+ while (table.header.length--) -+ inb(QEMU_CFG_DATA_PORT); -+ continue; -+ } -+ -+ *p += sizeof(struct smbios_structure_header); -+ -+ /* Entries end with a double NULL char, if there's a string at -+ * the end (length is greater than formatted length), the string -+ * terminator provides the first NULL. */ -+ string = header->length < table.header.length + -+ sizeof(struct smbios_structure_header); -+ -+ /* Read the rest and terminate the entry */ -+ qemu_cfg_read((uint8_t *)*p, table.header.length); -+ *p += table.header.length; -+ *((uint8_t*)*p) = 0; -+ (*p)++; -+ if (!string) { -+ *((uint8_t*)*p) = 0; -+ (*p)++; -+ } -+ -+ (*nr_structs)++; -+ if (*p - (char *)header > *max_struct_size) -+ *max_struct_size = *p - (char *)header; -+ } -+ -+ /* Mark that we've reported on this type */ -+ used_bitmap[(type >> 6) & 0x3] |= (1ULL << (type & 0x3f)); -+ -+ return (start != *p); -+#else /* !BX_QEMU */ -+ return 0; -+#endif -+} -+ - void smbios_init(void) - { - unsigned cpu_num, nr_structs = 0, max_struct_size = 0; -@@ -2246,34 +2416,39 @@ void smbios_init(void) - - p = (char *)start + sizeof(struct smbios_entry_point); - --#define add_struct(fn) do{ \ -- q = (fn); \ -- nr_structs++; \ -- if ((q - p) > max_struct_size) \ -- max_struct_size = q - p; \ -- p = q; \ --}while (0) -- -- add_struct(smbios_type_0_init(p)); -- add_struct(smbios_type_1_init(p)); -- add_struct(smbios_type_3_init(p)); -+#define add_struct(type, args...) do { \ -+ if (!smbios_load_external(type, &p, &nr_structs, &max_struct_size)) { \ -+ q = smbios_init_type_##type(args); \ -+ nr_structs++; \ -+ if ((q - p) > max_struct_size) \ -+ max_struct_size = q - p; \ -+ p = q; \ -+ } \ -+} while (0) -+ -+ add_struct(0, p); -+ add_struct(1, p); -+ add_struct(3, p); - for (cpu_num = 1; cpu_num <= smp_cpus; cpu_num++) -- add_struct(smbios_type_4_init(p, cpu_num)); -+ add_struct(4, p, cpu_num); - - /* Each 'memory device' covers up to 16GB of address space. */ - nr_mem_devs = (memsize + 0x3fff) >> 14; -- add_struct(smbios_type_16_init(p, memsize, nr_mem_devs)); -+ add_struct(16, p, memsize, nr_mem_devs); - for ( i = 0; i < nr_mem_devs; i++ ) - { - uint32_t dev_memsize = ((i == (nr_mem_devs - 1)) - ? (((memsize-1) & 0x3fff)+1) : 0x4000); -- add_struct(smbios_type_17_init(p, dev_memsize, i)); -- add_struct(smbios_type_19_init(p, dev_memsize, i)); -- add_struct(smbios_type_20_init(p, dev_memsize, i)); -+ add_struct(17, p, dev_memsize, i); -+ add_struct(19, p, dev_memsize, i); -+ add_struct(20, p, dev_memsize, i); - } - -- add_struct(smbios_type_32_init(p)); -- add_struct(smbios_type_127_init(p)); -+ add_struct(32, p); -+ /* Add any remaining provided entries before the end marker */ -+ for (i = 0; i < 256; i++) -+ smbios_load_external(i, &p, &nr_structs, &max_struct_size); -+ add_struct(127, p); - - #undef add_struct - -@@ -2380,8 +2555,6 @@ void rombios32_init(uint32_t *s3_resume_vector, uint8_t *shutdown_flag) - - mptable_init(); - -- uuid_probe(); -- - smbios_init(); - - if (acpi_enabled) - - --- -To unsubscribe from this list: send the line "unsubscribe kvm" in -the body of a message to majordomo@vger.kernel.org -More majordomo info at http://vger.kernel.org/majordomo-info.html - diff --git a/pc-bios/bios-pq/0013_fix-non-acpi-timer-interrupt-routing.patch b/pc-bios/bios-pq/0013_fix-non-acpi-timer-interrupt-routing.patch deleted file mode 100644 index 80e7716c6..000000000 --- a/pc-bios/bios-pq/0013_fix-non-acpi-timer-interrupt-routing.patch +++ /dev/null @@ -1,60 +0,0 @@ -From c09142004a409bf27070939f470c5e0b37595a5a Mon Sep 17 00:00:00 2001 -From: Beth Kon <eak@us.ibm.com> -Date: Fri, 19 Jun 2009 14:22:00 -0400 -Subject: [PATCH] Fix non-ACPI Timer Interrupt Routing - v3 - -Replicate ACPI irq0->inti2 override in mp table for non-acpi case. - -v1 -> v2 adds comment suggested by Ryan. -v2 -> v3 clarifies comment and corrects entry count - -Signed-off-by: Beth Kon <eak@us.ibm.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> ---- - bios/rombios32.c | 14 ++++++++++++++ - 1 files changed, 14 insertions(+), 0 deletions(-) - -diff --git a/bios/rombios32.c b/bios/rombios32.c -index 1a1ed64..d789e20 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -1124,7 +1124,11 @@ static void mptable_init(void) - putstr(&q, "0.1 "); /* vendor id */ - putle32(&q, 0); /* OEM table ptr */ - putle16(&q, 0); /* OEM table size */ -+#ifdef BX_QEMU -+ putle16(&q, smp_cpus + 17); /* entry count */ -+#else - putle16(&q, smp_cpus + 18); /* entry count */ -+#endif - putle32(&q, 0xfee00000); /* local APIC addr */ - putle16(&q, 0); /* ext table length */ - putb(&q, 0); /* ext table checksum */ -@@ -1166,6 +1170,12 @@ static void mptable_init(void) - - /* irqs */ - for(i = 0; i < 16; i++) { -+#ifdef BX_QEMU -+ /* One entry per ioapic interrupt destination. Destination 2 is covered -+ by irq0->inti2 override (i == 0). Source IRQ 2 is unused */ -+ if (i == 2) -+ continue; -+#endif - putb(&q, 3); /* entry type = I/O interrupt */ - putb(&q, 0); /* interrupt type = vectored interrupt */ - putb(&q, 0); /* flags: po=0, el=0 */ -@@ -1173,7 +1183,11 @@ static void mptable_init(void) - putb(&q, 0); /* source bus ID = ISA */ - putb(&q, i); /* source bus IRQ */ - putb(&q, ioapic_id); /* dest I/O APIC ID */ -+#ifdef BX_QEMU -+ putb(&q, i == 0 ? 2 : i); /* dest I/O APIC interrupt in */ -+#else - putb(&q, i); /* dest I/O APIC interrupt in */ -+#endif - } - /* patch length */ - len = q - mp_config_table; --- -1.6.2.5 - diff --git a/pc-bios/bios-pq/0014_add-srat-acpi-table-support.patch b/pc-bios/bios-pq/0014_add-srat-acpi-table-support.patch deleted file mode 100644 index a5227df25..000000000 --- a/pc-bios/bios-pq/0014_add-srat-acpi-table-support.patch +++ /dev/null @@ -1,305 +0,0 @@ -add SRAT ACPI table support (Andre Przywara) - -Take NUMA topology info from the QEMU firmware configuration interface -(number of nodes, node for each (V)CPU and amount of memory) and build -a SRAT table describing this topology for the guest OS. Handles more than -4 GB of RAM by including a hole for 32bit PCI memory mapping. - -Signed-off-by: Andre Przywara <andre.przywara@amd.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -diff --git a/bios/rombios32.c b/bios/rombios32.c -index 49dfd62..d8f6d4e 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -450,6 +450,11 @@ int pm_sci_int; - unsigned long bios_table_cur_addr; - unsigned long bios_table_end_addr; - -+static inline uint64_t le64_to_cpu(uint64_t x) -+{ -+ return x; -+} -+ - void wrmsr_smp(uint32_t index, uint64_t val) - { - static struct { uint32_t ecx, eax, edx; } *p = (void *)SMP_MSR_ADDR; -@@ -468,6 +473,7 @@ void wrmsr_smp(uint32_t index, uint64_t val) - #define QEMU_CFG_SIGNATURE 0x00 - #define QEMU_CFG_ID 0x01 - #define QEMU_CFG_UUID 0x02 -+#define QEMU_CFG_NUMA 0x0D - #define QEMU_CFG_ARCH_LOCAL 0x8000 - #define QEMU_CFG_ACPI_TABLES (QEMU_CFG_ARCH_LOCAL + 0) - #define QEMU_CFG_SMBIOS_ENTRIES (QEMU_CFG_ARCH_LOCAL + 1) -@@ -529,6 +535,14 @@ static uint16_t smbios_entries(void) - - return cnt; - } -+ -+uint64_t qemu_cfg_get64 (void) -+{ -+ uint64_t ret; -+ -+ qemu_cfg_read((uint8_t*)&ret, 8); -+ return le64_to_cpu(ret); -+} - #endif - - void cpu_probe(void) -@@ -1281,7 +1295,7 @@ struct rsdt_descriptor_rev1 - { - ACPI_TABLE_HEADER_DEF /* ACPI common table header */ - #ifdef BX_QEMU -- uint32_t table_offset_entry [4]; /* Array of pointers to other */ -+ uint32_t table_offset_entry [5]; /* Array of pointers to other */ - #else - uint32_t table_offset_entry [3]; /* Array of pointers to other */ - #endif -@@ -1389,7 +1403,7 @@ struct multiple_apic_table - } __attribute__((__packed__)); - - --/* Values for Type in APIC_HEADER_DEF */ -+/* Values for Type in APIC sub-headers */ - - #define APIC_PROCESSOR 0 - #define APIC_IO 1 -@@ -1402,18 +1416,18 @@ struct multiple_apic_table - #define APIC_XRUPT_SOURCE 8 - #define APIC_RESERVED 9 /* 9 and greater are reserved */ - --/* -- * MADT sub-structures (Follow MULTIPLE_APIC_DESCRIPTION_TABLE) -- */ --#define APIC_HEADER_DEF /* Common APIC sub-structure header */\ -+#define ACPI_SUB_HEADER_DEF /* Common ACPI sub-structure header */\ - uint8_t type; \ - uint8_t length; - -+/* -+ * MADT sub-structures (Follow MULTIPLE_APIC_DESCRIPTION_TABLE) -+ */ - /* Sub-structures for MADT */ - - struct madt_processor_apic - { -- APIC_HEADER_DEF -+ ACPI_SUB_HEADER_DEF - uint8_t processor_id; /* ACPI processor id */ - uint8_t local_apic_id; /* Processor's local APIC id */ - #if 0 -@@ -1424,6 +1438,43 @@ struct madt_processor_apic - #endif - } __attribute__((__packed__)); - -+/* -+ * SRAT (NUMA topology description) table -+ */ -+ -+#define SRAT_PROCESSOR 0 -+#define SRAT_MEMORY 1 -+ -+struct system_resource_affinity_table -+{ -+ ACPI_TABLE_HEADER_DEF -+ uint32_t reserved1; -+ uint32_t reserved2[2]; -+}; -+ -+struct srat_processor_affinity -+{ -+ ACPI_SUB_HEADER_DEF -+ uint8_t proximity_lo; -+ uint8_t local_apic_id; -+ uint32_t flags; -+ uint8_t local_sapic_eid; -+ uint8_t proximity_hi[3]; -+ uint32_t reserved; -+}; -+ -+struct srat_memory_affinity -+{ -+ ACPI_SUB_HEADER_DEF -+ uint8_t proximity[4]; -+ uint16_t reserved1; -+ uint32_t base_addr_low,base_addr_high; -+ uint32_t length_low,length_high; -+ uint32_t reserved2; -+ uint32_t flags; -+ uint32_t reserved3[2]; -+}; -+ - #ifdef BX_QEMU - /* - * * ACPI 2.0 Generic Address Space definition. -@@ -1452,7 +1503,7 @@ struct acpi_20_hpet { - - struct madt_io_apic - { -- APIC_HEADER_DEF -+ ACPI_SUB_HEADER_DEF - uint8_t io_apic_id; /* I/O APIC ID */ - uint8_t reserved; /* Reserved - must be zero */ - uint32_t address; /* APIC physical address */ -@@ -1463,7 +1514,7 @@ struct madt_io_apic - #ifdef BX_QEMU - struct madt_int_override - { -- APIC_HEADER_DEF -+ ACPI_SUB_HEADER_DEF - uint8_t bus; /* Identifies ISA Bus */ - uint8_t source; /* Bus-relative interrupt source */ - uint32_t gsi; /* GSI that source will signal */ -@@ -1567,6 +1618,21 @@ int acpi_build_processor_ssdt(uint8_t *ssdt) - return ssdt_ptr - ssdt; - } - -+static void acpi_build_srat_memory(struct srat_memory_affinity *numamem, -+ uint64_t base, uint64_t len, int node, int enabled) -+{ -+ numamem->type = SRAT_MEMORY; -+ numamem->length = sizeof(*numamem); -+ memset (numamem->proximity, 0 ,4); -+ numamem->proximity[0] = node; -+ numamem->flags = cpu_to_le32(!!enabled); -+ numamem->base_addr_low = base & 0xFFFFFFFF; -+ numamem->base_addr_high = base >> 32; -+ numamem->length_low = len & 0xFFFFFFFF; -+ numamem->length_high = len >> 32; -+ return; -+} -+ - /* base_addr must be a multiple of 4KB */ - void acpi_bios_init(void) - { -@@ -1577,12 +1643,15 @@ void acpi_bios_init(void) - struct multiple_apic_table *madt; - uint8_t *dsdt, *ssdt; - #ifdef BX_QEMU -+ struct system_resource_affinity_table *srat; - struct acpi_20_hpet *hpet; - uint32_t hpet_addr; - #endif - uint32_t base_addr, rsdt_addr, fadt_addr, addr, facs_addr, dsdt_addr, ssdt_addr; - uint32_t acpi_tables_size, madt_addr, madt_size, rsdt_size; -+ uint32_t srat_addr,srat_size; - uint16_t i, external_tables; -+ int nb_numa_nodes; - - /* reserve memory space for tables */ - #ifdef BX_USE_EBDA_TABLES -@@ -1624,6 +1693,25 @@ void acpi_bios_init(void) - ssdt_addr = addr; - ssdt = (void *)(addr); - addr += acpi_build_processor_ssdt(ssdt); -+#ifdef BX_QEMU -+ qemu_cfg_select(QEMU_CFG_NUMA); -+ nb_numa_nodes = qemu_cfg_get64(); -+#else -+ nb_numa_nodes = 0; -+#endif -+ if (nb_numa_nodes > 0) { -+ addr = (addr + 7) & ~7; -+ srat_addr = addr; -+ srat_size = sizeof(*srat) + -+ sizeof(struct srat_processor_affinity) * smp_cpus + -+ sizeof(struct srat_memory_affinity) * (nb_numa_nodes + 2); -+ srat = (void *)(addr); -+ addr += srat_size; -+ } else { -+ srat_addr = addr; -+ srat = (void*)(addr); -+ srat_size = 0; -+ } - - addr = (addr + 7) & ~7; - madt_addr = addr; -@@ -1733,6 +1821,69 @@ void acpi_bios_init(void) - - memset(rsdt, 0, rsdt_size); - #ifdef BX_QEMU -+ /* SRAT */ -+ if (nb_numa_nodes > 0) { -+ struct srat_processor_affinity *core; -+ struct srat_memory_affinity *numamem; -+ int slots; -+ uint64_t mem_len, mem_base, next_base = 0, curnode; -+ -+ qemu_cfg_select(QEMU_CFG_NUMA); -+ qemu_cfg_get64(); -+ memset (srat, 0 , srat_size); -+ srat->reserved1=1; -+ -+ core = (void*)(srat + 1); -+ for (i = 0; i < smp_cpus; ++i) { -+ core->type = SRAT_PROCESSOR; -+ core->length = sizeof(*core); -+ core->local_apic_id = i; -+ curnode = qemu_cfg_get64(); -+ core->proximity_lo = curnode; -+ memset (core->proximity_hi, 0, 3); -+ core->local_sapic_eid = 0; -+ if (i < smp_cpus) -+ core->flags = cpu_to_le32(1); -+ else -+ core->flags = 0; -+ core++; -+ } -+ -+ /* the memory map is a bit tricky, it contains at least one hole -+ * from 640k-1M and possibly another one from 3.5G-4G. -+ */ -+ numamem = (void*)core; slots = 0; -+ acpi_build_srat_memory(numamem, 0, 640*1024, 0, 1); -+ next_base = 1024 * 1024; numamem++;slots++; -+ for (i = 1; i < nb_numa_nodes + 1; ++i) { -+ mem_base = next_base; -+ mem_len = qemu_cfg_get64(); -+ if (i == 1) mem_len -= 1024 * 1024; -+ next_base = mem_base + mem_len; -+ -+ /* Cut out the PCI hole */ -+ if (mem_base <= ram_size && next_base > ram_size) { -+ mem_len -= next_base - ram_size; -+ if (mem_len > 0) { -+ acpi_build_srat_memory(numamem, mem_base, mem_len, i-1, 1); -+ numamem++; slots++; -+ } -+ mem_base = 1ULL << 32; -+ mem_len = next_base - ram_size; -+ next_base += (1ULL << 32) - ram_size; -+ } -+ acpi_build_srat_memory(numamem, mem_base, mem_len, i-1, 1); -+ numamem++; slots++; -+ } -+ for (; slots < nb_numa_nodes + 2; slots++) { -+ acpi_build_srat_memory(numamem, 0, 0, 0, 0); -+ numamem++; -+ } -+ -+ acpi_build_table_header((struct acpi_table_header *)srat, -+ "SRAT", srat_size, 1); -+ } -+ - /* HPET */ - memset(hpet, 0, sizeof(*hpet)); - /* Note timer_block_id value must be kept in sync with value advertised by -@@ -1761,9 +1912,11 @@ void acpi_bios_init(void) - rsdt->table_offset_entry[2] = cpu_to_le32(ssdt_addr); - #ifdef BX_QEMU - rsdt->table_offset_entry[3] = cpu_to_le32(hpet_addr); -+ if (nb_numa_nodes > 0) -+ rsdt->table_offset_entry[4] = cpu_to_le32(srat_addr); - #endif -- acpi_build_table_header((struct acpi_table_header *)rsdt, -- "RSDT", rsdt_size, 1); -+ acpi_build_table_header((struct acpi_table_header *)rsdt, "RSDT", -+ rsdt_size - (nb_numa_nodes > 0? 0: sizeof(uint32_t)), 1); - - acpi_tables_size = addr - base_addr; - --- -1.6.1.3 - - diff --git a/pc-bios/bios-pq/0015_enable-power-button-even-generation.patch b/pc-bios/bios-pq/0015_enable-power-button-even-generation.patch deleted file mode 100644 index fb5880280..000000000 --- a/pc-bios/bios-pq/0015_enable-power-button-even-generation.patch +++ /dev/null @@ -1,20 +0,0 @@ -Enable power button event generation. - -Signed-off-by: Gleb Natapov <gleb@redhat.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -diff --git a/bios/rombios32.c b/bios/rombios32.c -index 81e3bad..9986531 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -1767,8 +1767,8 @@ void acpi_bios_init(void) - fadt->plvl3_lat = cpu_to_le16(0xfff); // C3 state not supported - fadt->gpe0_blk = cpu_to_le32(0xafe0); - fadt->gpe0_blk_len = 4; -- /* WBINVD + PROC_C1 + PWR_BUTTON + SLP_BUTTON + FIX_RTC */ -- fadt->flags = cpu_to_le32((1 << 0) | (1 << 2) | (1 << 4) | (1 << 5) | (1 << 6)); -+ /* WBINVD + PROC_C1 + SLP_BUTTON + FIX_RTC */ -+ fadt->flags = cpu_to_le32((1 << 0) | (1 << 2) | (1 << 5) | (1 << 6)); - acpi_build_table_header((struct acpi_table_header *)fadt, "FACP", - sizeof(*fadt), 1); - diff --git a/pc-bios/bios-pq/0016-use-correct-mask-to-size-pci-option-rom-bar.patch b/pc-bios/bios-pq/0016-use-correct-mask-to-size-pci-option-rom-bar.patch deleted file mode 100644 index 556a0bda7..000000000 --- a/pc-bios/bios-pq/0016-use-correct-mask-to-size-pci-option-rom-bar.patch +++ /dev/null @@ -1,33 +0,0 @@ -Subject: [PATCH] bios: Use the correct mask to size the PCI option ROM BAR -From: Alex Williamson <alex.williamson@hp.com> - -Bit 0 is the enable bit, which we not only don't want to set, but -it will stick and make us think it's an I/O port resource. - -Signed-off-by: Alex Williamson <alex.williamson@hp.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> ---- - -diff --git a/bios/rombios32.c b/bios/rombios32.c -index d7e18e9..f861f81 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -985,11 +985,13 @@ static void pci_bios_init_device(PCIDevice *d) - int ofs; - uint32_t val, size ; - -- if (i == PCI_ROM_SLOT) -+ if (i == PCI_ROM_SLOT) { - ofs = 0x30; -- else -+ pci_config_writel(d, ofs, 0xfffffffe); -+ } else { - ofs = 0x10 + i * 4; -- pci_config_writel(d, ofs, 0xffffffff); -+ pci_config_writel(d, ofs, 0xffffffff); -+ } - val = pci_config_readl(d, ofs); - if (val != 0) { - size = (~(val & ~0xf)) + 1; - - diff --git a/pc-bios/bios-pq/0017-bochs-bios-Move-QEMU_CFG-constants-to-rombios.h.patch b/pc-bios/bios-pq/0017-bochs-bios-Move-QEMU_CFG-constants-to-rombios.h.patch deleted file mode 100644 index f6a1788a6..000000000 --- a/pc-bios/bios-pq/0017-bochs-bios-Move-QEMU_CFG-constants-to-rombios.h.patch +++ /dev/null @@ -1,59 +0,0 @@ -From f371c480cb93f3516f34af5e3a4524ee6ba43c24 Mon Sep 17 00:00:00 2001 -From: Jan Kiszka <jan.kiszka@web.de> -Date: Thu, 2 Jul 2009 00:11:38 +0200 -Subject: [PATCH 1/2] bochs-bios: Move QEMU_CFG constants to rombios.h - -We will need them outside of rombios32.c. - -Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> ---- - bios/rombios.h | 10 ++++++++++ - bios/rombios32.c | 10 ---------- - 2 files changed, 10 insertions(+), 10 deletions(-) - -diff --git a/bios/rombios.h b/bios/rombios.h -index 6f9cbb1..59ce19d 100644 ---- a/bios/rombios.h -+++ b/bios/rombios.h -@@ -58,6 +58,16 @@ - #define SMB_IO_BASE 0xb100 - #define SMP_MSR_ADDR 0x0510 - -+#define QEMU_CFG_CTL_PORT 0x510 -+#define QEMU_CFG_DATA_PORT 0x511 -+#define QEMU_CFG_SIGNATURE 0x00 -+#define QEMU_CFG_ID 0x01 -+#define QEMU_CFG_UUID 0x02 -+#define QEMU_CFG_NUMA 0x0d -+#define QEMU_CFG_ARCH_LOCAL 0x8000 -+#define QEMU_CFG_ACPI_TABLES (QEMU_CFG_ARCH_LOCAL + 0) -+#define QEMU_CFG_SMBIOS_ENTRIES (QEMU_CFG_ARCH_LOCAL + 1) -+ - // Define the application NAME - #if defined(BX_QEMU) - # define BX_APPNAME "QEMU" -diff --git a/bios/rombios32.c b/bios/rombios32.c -index f861f81..3fe4e48 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -468,16 +468,6 @@ void wrmsr_smp(uint32_t index, uint64_t val) - } - - #ifdef BX_QEMU --#define QEMU_CFG_CTL_PORT 0x510 --#define QEMU_CFG_DATA_PORT 0x511 --#define QEMU_CFG_SIGNATURE 0x00 --#define QEMU_CFG_ID 0x01 --#define QEMU_CFG_UUID 0x02 --#define QEMU_CFG_NUMA 0x0D --#define QEMU_CFG_ARCH_LOCAL 0x8000 --#define QEMU_CFG_ACPI_TABLES (QEMU_CFG_ARCH_LOCAL + 0) --#define QEMU_CFG_SMBIOS_ENTRIES (QEMU_CFG_ARCH_LOCAL + 1) -- - int qemu_cfg_port; - - void qemu_cfg_select(int f) --- -1.6.2.5 - diff --git a/pc-bios/bios-pq/0018-bochs-bios-Make-boot-prompt-optional.patch b/pc-bios/bios-pq/0018-bochs-bios-Make-boot-prompt-optional.patch deleted file mode 100644 index cda97572d..000000000 --- a/pc-bios/bios-pq/0018-bochs-bios-Make-boot-prompt-optional.patch +++ /dev/null @@ -1,68 +0,0 @@ -From fff8ffe1c92474ee58ebd6da82fede0ab7929214 Mon Sep 17 00:00:00 2001 -From: Jan Kiszka <jan.kiszka@web.de> -Date: Thu, 2 Jul 2009 00:11:44 +0200 -Subject: [PATCH 2/2] bochs-bios: Make boot prompt optional - -Check via QEMU's firmware configuration interface if the boot prompt -should be given. This allows to disable the prompt with its several -seconds long delay, speeding up the common boot case. - -Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> ---- - bios/rombios.c | 19 +++++++++++++++++++ - bios/rombios.h | 1 + - 2 files changed, 20 insertions(+), 0 deletions(-) - -diff --git a/bios/rombios.c b/bios/rombios.c -index 0f13b53..560e6d5 100644 ---- a/bios/rombios.c -+++ b/bios/rombios.c -@@ -2015,6 +2015,21 @@ Bit16u i; ipl_entry_t *e; - } - - #if BX_ELTORITO_BOOT -+#ifdef BX_QEMU -+int -+qemu_cfg_probe_bootkey() -+{ -+ outw(QEMU_CFG_CTL_PORT, QEMU_CFG_SIGNATURE); -+ if (inb(QEMU_CFG_DATA_PORT) != 'Q' || -+ inb(QEMU_CFG_DATA_PORT) != 'E' || -+ inb(QEMU_CFG_DATA_PORT) != 'M' || -+ inb(QEMU_CFG_DATA_PORT) != 'U') return 1; -+ -+ outw(QEMU_CFG_CTL_PORT, QEMU_CFG_BOOT_MENU); -+ return inb(QEMU_CFG_DATA_PORT); -+} -+#endif // BX_QEMU -+ - void - interactive_bootkey() - { -@@ -2026,6 +2041,10 @@ interactive_bootkey() - Bit16u ss = get_SS(); - Bit16u valid_choice = 0; - -+#ifdef BX_QEMU -+ if (!qemu_cfg_probe_bootkey()) return; -+#endif -+ - while (check_for_keystroke()) - get_keystroke(); - -diff --git a/bios/rombios.h b/bios/rombios.h -index 59ce19d..8ece2ee 100644 ---- a/bios/rombios.h -+++ b/bios/rombios.h -@@ -64,6 +64,7 @@ - #define QEMU_CFG_ID 0x01 - #define QEMU_CFG_UUID 0x02 - #define QEMU_CFG_NUMA 0x0d -+#define QEMU_CFG_BOOT_MENU 0x0e - #define QEMU_CFG_ARCH_LOCAL 0x8000 - #define QEMU_CFG_ACPI_TABLES (QEMU_CFG_ARCH_LOCAL + 0) - #define QEMU_CFG_SMBIOS_ENTRIES (QEMU_CFG_ARCH_LOCAL + 1) --- -1.6.2.5 - diff --git a/pc-bios/bios-pq/0019-bios-fix-multiple-calls.patch b/pc-bios/bios-pq/0019-bios-fix-multiple-calls.patch deleted file mode 100644 index cfa4c1309..000000000 --- a/pc-bios/bios-pq/0019-bios-fix-multiple-calls.patch +++ /dev/null @@ -1,35 +0,0 @@ -bios: Fix multiple calls into smbios_load_ex - -We're marking the used entry bitmap in smbios_load_external() for each -type we check, regardless of whether we loaded anything. This makes -subsequent calls behave as if we've already loaded the tables from qemu -and can result in missing tables (ex. multiple type4 entries on an SMP -guest). Only mark the bitmap if we actually load something. - -Signed-off-by: Alex Williamson <alex.williamson@hp.com> -Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> - -diff --git a/bios/rombios32.c b/bios/rombios32.c -index f861f81..c869798 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -2554,13 +2554,14 @@ smbios_load_external(int type, char **p, unsigned *nr_structs, - *max_struct_size = *p - (char *)header; - } - -- /* Mark that we've reported on this type */ -- used_bitmap[(type >> 6) & 0x3] |= (1ULL << (type & 0x3f)); -+ if (start != *p) { -+ /* Mark that we've reported on this type */ -+ used_bitmap[(type >> 6) & 0x3] |= (1ULL << (type & 0x3f)); -+ return 1; -+ } - -- return (start != *p); --#else /* !BX_QEMU */ -+#endif /* !BX_QEMU */ - return 0; --#endif - } - - void smbios_init(void) diff --git a/pc-bios/bios-pq/0020-qemu-kvm-cfg-maxcpus.patch b/pc-bios/bios-pq/0020-qemu-kvm-cfg-maxcpus.patch deleted file mode 100644 index 50e9b8c71..000000000 --- a/pc-bios/bios-pq/0020-qemu-kvm-cfg-maxcpus.patch +++ /dev/null @@ -1,62 +0,0 @@ -Read max_cpus variable from QEMU_CFG. If not provided, use value of -smp_cpus. - -Signed-off-by: Jes Sorensen <jes@sgi.com> - -diff --git a/bios/rombios.h b/bios/rombios.h -index 8ece2ee..dbf3bd3 100644 ---- a/bios/rombios.h -+++ b/bios/rombios.h -@@ -65,6 +65,7 @@ - #define QEMU_CFG_UUID 0x02 - #define QEMU_CFG_NUMA 0x0d - #define QEMU_CFG_BOOT_MENU 0x0e -+#define QEMU_CFG_MAX_CPUS 0x0f - #define QEMU_CFG_ARCH_LOCAL 0x8000 - #define QEMU_CFG_ACPI_TABLES (QEMU_CFG_ARCH_LOCAL + 0) - #define QEMU_CFG_SMBIOS_ENTRIES (QEMU_CFG_ARCH_LOCAL + 1) -diff --git a/bios/rombios32.c b/bios/rombios32.c -index 69e82b1..610fc1f 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -436,6 +436,7 @@ void delay_ms(int n) - } - - uint16_t smp_cpus; -+uint16_t max_cpus; - uint32_t cpuid_signature; - uint32_t cpuid_features; - uint32_t cpuid_ext_features; -@@ -526,6 +527,19 @@ static uint16_t smbios_entries(void) - return cnt; - } - -+static uint16_t get_max_cpus(void) -+{ -+ uint16_t cnt; -+ -+ qemu_cfg_select(QEMU_CFG_MAX_CPUS); -+ qemu_cfg_read((uint8_t*)&cnt, sizeof(cnt)); -+ -+ if (!cnt) -+ cnt = smp_cpus; -+ -+ return cnt; -+} -+ - uint64_t qemu_cfg_get64 (void) - { - uint64_t ret; -@@ -2689,6 +2703,12 @@ void rombios32_init(uint32_t *s3_resume_vector, uint8_t *shutdown_flag) - - smp_probe(); - -+#ifdef BX_QEMU -+ max_cpus = get_max_cpus(); -+#else -+ max_cpus = smp_cpus; -+#endif -+ - find_bios_table_area(); - - if (*shutdown_flag == 0xfe) { diff --git a/pc-bios/bios-pq/0021-qemu-madt-maxcpus.patch b/pc-bios/bios-pq/0021-qemu-madt-maxcpus.patch deleted file mode 100644 index 49a0fdd7a..000000000 --- a/pc-bios/bios-pq/0021-qemu-madt-maxcpus.patch +++ /dev/null @@ -1,117 +0,0 @@ -Use max_cpus when building bios tables. - -Signed-off-by: Jes Sorensen <jes@sgi.com> - -diff --git a/bios/rombios32.c b/bios/rombios32.c -index e6bb164..3d15283 100644 ---- a/bios/rombios32.c -+++ b/bios/rombios32.c -@@ -1145,23 +1145,25 @@ static void mptable_init(void) - putle32(&q, 0); /* OEM table ptr */ - putle16(&q, 0); /* OEM table size */ - #ifdef BX_QEMU -- putle16(&q, smp_cpus + 17); /* entry count */ -+ putle16(&q, max_cpus + 17); /* entry count */ - #else -- putle16(&q, smp_cpus + 18); /* entry count */ -+ putle16(&q, max_cpus + 18); /* entry count */ - #endif - putle32(&q, 0xfee00000); /* local APIC addr */ - putle16(&q, 0); /* ext table length */ - putb(&q, 0); /* ext table checksum */ - putb(&q, 0); /* reserved */ - -- for(i = 0; i < smp_cpus; i++) { -+ for(i = 0; i < max_cpus; i++) { - putb(&q, 0); /* entry type = processor */ - putb(&q, i); /* APIC id */ - putb(&q, 0x11); /* local APIC version number */ - if (i == 0) - putb(&q, 3); /* cpu flags: enabled, bootstrap cpu */ -- else -+ else if (i < smp_cpus) - putb(&q, 1); /* cpu flags: enabled */ -+ else -+ putb(&q, 0); /* cpu flags: disabled */ - putb(&q, 0); /* cpu signature */ - putb(&q, 6); - putb(&q, 0); -@@ -1181,7 +1183,7 @@ static void mptable_init(void) - putstr(&q, "ISA "); - - /* ioapic */ -- ioapic_id = smp_cpus; -+ ioapic_id = max_cpus; - putb(&q, 2); /* entry type = I/O APIC */ - putb(&q, ioapic_id); /* apic ID */ - putb(&q, 0x11); /* I/O APIC version number */ -@@ -1581,7 +1583,7 @@ int acpi_build_processor_ssdt(uint8_t *ssdt) - { - uint8_t *ssdt_ptr = ssdt; - int i, length; -- int acpi_cpus = smp_cpus > 0xff ? 0xff : smp_cpus; -+ int acpi_cpus = max_cpus > 0xff ? 0xff : max_cpus; - - ssdt_ptr[9] = 0; // checksum; - ssdt_ptr += sizeof(struct acpi_table_header); -@@ -1713,7 +1715,7 @@ void acpi_bios_init(void) - addr = (addr + 7) & ~7; - srat_addr = addr; - srat_size = sizeof(*srat) + -- sizeof(struct srat_processor_affinity) * smp_cpus + -+ sizeof(struct srat_processor_affinity) * max_cpus + - sizeof(struct srat_memory_affinity) * (nb_numa_nodes + 2); - srat = (void *)(addr); - addr += srat_size; -@@ -1726,7 +1728,7 @@ void acpi_bios_init(void) - addr = (addr + 7) & ~7; - madt_addr = addr; - madt_size = sizeof(*madt) + -- sizeof(struct madt_processor_apic) * smp_cpus + -+ sizeof(struct madt_processor_apic) * max_cpus + - #ifdef BX_QEMU - sizeof(struct madt_io_apic) + sizeof(struct madt_int_override); - #else -@@ -1799,18 +1801,21 @@ void acpi_bios_init(void) - madt->local_apic_address = cpu_to_le32(0xfee00000); - madt->flags = cpu_to_le32(1); - apic = (void *)(madt + 1); -- for(i=0;i<smp_cpus;i++) { -+ for(i = 0;i < max_cpus; i++) { - apic->type = APIC_PROCESSOR; - apic->length = sizeof(*apic); - apic->processor_id = i; - apic->local_apic_id = i; -- apic->flags = cpu_to_le32(1); -+ if (i < smp_cpus) -+ apic->flags = cpu_to_le32(1); -+ else -+ apic->flags = 0; - apic++; - } - io_apic = (void *)apic; - io_apic->type = APIC_IO; - io_apic->length = sizeof(*io_apic); -- io_apic->io_apic_id = smp_cpus; -+ io_apic->io_apic_id = max_cpus; - io_apic->address = cpu_to_le32(0xfec00000); - io_apic->interrupt = cpu_to_le32(0); - #ifdef BX_QEMU -@@ -1844,7 +1849,7 @@ void acpi_bios_init(void) - srat->reserved1=1; - - core = (void*)(srat + 1); -- for (i = 0; i < smp_cpus; ++i) { -+ for (i = 0; i < max_cpus; ++i) { - core->type = SRAT_PROCESSOR; - core->length = sizeof(*core); - core->local_apic_id = i; -@@ -2603,7 +2608,7 @@ void smbios_init(void) - add_struct(0, p); - add_struct(1, p); - add_struct(3, p); -- for (cpu_num = 1; cpu_num <= smp_cpus; cpu_num++) -+ for (cpu_num = 1; cpu_num <= max_cpus; cpu_num++) - add_struct(4, p, cpu_num); - - /* Each 'memory device' covers up to 16GB of address space. */ diff --git a/pc-bios/bios-pq/HEAD b/pc-bios/bios-pq/HEAD deleted file mode 100644 index 3a849d8ff..000000000 --- a/pc-bios/bios-pq/HEAD +++ /dev/null @@ -1 +0,0 @@ -04387139e3b5ac97b5633cd40b3d87cdf45efd6c diff --git a/pc-bios/bios-pq/series b/pc-bios/bios-pq/series deleted file mode 100644 index 0422dec96..000000000 --- a/pc-bios/bios-pq/series +++ /dev/null @@ -1,21 +0,0 @@ -0001_bx-qemu.patch -0002_kvm-bios-update-smbios-table-to-report-memory-above-4g.patch -0003_kvm-bios-generate-mptable-unconditionally.patch -0004_kvm-bios-resolve-memory-device-roll-over-reporting--issues-with-32g-guests.patch -0005_kvm-bios-fix-smbios-memory-device-length-boundary--condition.patch -0006_qemu-bios-use-preprocessor-for-pci-link-routing.patch -0007_bios-add-26-pci-slots,-bringing-the-total-to-32.patch -0008_qemu-bios-provide-gpe-_l0x-methods.patch -0009_qemu-bios-pci-hotplug-support.patch -0010_bios-mark-the-acpi-sci-interrupt-as-connected-to-irq-9.patch -0011_read-additional-acpi-tables-from-a-vm.patch -0012-load-smbios-entries-and-files-from-qemu.patch -0013_fix-non-acpi-timer-interrupt-routing.patch -0014_add-srat-acpi-table-support.patch -0015_enable-power-button-even-generation.patch -0016-use-correct-mask-to-size-pci-option-rom-bar.patch -0017-bochs-bios-Move-QEMU_CFG-constants-to-rombios.h.patch -0018-bochs-bios-Make-boot-prompt-optional.patch -0019-bios-fix-multiple-calls.patch -0020-qemu-kvm-cfg-maxcpus.patch -0021-qemu-madt-maxcpus.patch diff --git a/pc-bios/vgabios-pq/HEAD b/pc-bios/vgabios-pq/HEAD deleted file mode 100644 index 83fa6f79d..000000000 --- a/pc-bios/vgabios-pq/HEAD +++ /dev/null @@ -1 +0,0 @@ -86ccbd96bf82d046d219141ac56cd4b26256889b diff --git a/pc-bios/vgabios-pq/series b/pc-bios/vgabios-pq/series deleted file mode 100644 index e69de29bb..000000000 --- a/pc-bios/vgabios-pq/series +++ /dev/null diff --git a/qdict-test-data.txt b/qdict-test-data.txt new file mode 100644 index 000000000..122fda452 --- /dev/null +++ b/qdict-test-data.txt @@ -0,0 +1,4999 @@ +00-INDEX: 333 +07: 4096 +1040.bin.ihex: 92633 +11d.c: 17874 +11d.h: 2386 +1200.bin.ihex: 14717 +12160.bin.ihex: 77829 +1232ea962bbaf0e909365f4964f6cceb2ba8ce: 298 +1280.bin.ihex: 88220 +15562512ca6cf14c1b8f08e09d5907118deaf0: 297 +17: 4096 +1d: 4096 +1.Intro: 14968 +21142.c: 8591 +21285.c: 11721 +2860_main_dev.c: 33854 +2860_rtmp_init.c: 26170 +2870_main_dev.c: 39352 +2870_rtmp_init.c: 51247 +2.Process: 22356 +300vtbl.h: 43771 +310vtbl.h: 59655 +3270.ChangeLog: 1889 +3270.txt: 10964 +3550.bin.ihex: 13916 +3780i.c: 21485 +3780i.h: 14180 +38C0800.bin.ihex: 14772 +38C1600.bin.ihex: 17504 +3C359.bin.ihex: 69044 +3c359.c: 60161 +3c359.h: 7264 +3c359.txt: 2463 +3c501.c: 23869 +3c501.h: 2623 +3c503.c: 22491 +3c503.h: 3880 +3c505.c: 48605 +3c505.h: 6535 +3c505.txt: 1831 +3c507.c: 28758 +3c509.c: 42879 +3c509.txt: 9006 +3c515.c: 49671 +3c523.c: 39251 +3c523.h: 11169 +3c527.c: 43065 +3c527.h: 1482 +3c574_cs.c: 35859 +3c589_cs.c: 30110 +3c59x.c: 103272 +3CCFEM556.cis.ihex: 469 +3com: 4096 +3CXEM556.cis.ihex: 463 +3.Early-stage: 9993 +3w-9xxx.c: 77318 +3w-9xxx.h: 26357 +3w-xxxx.c: 85227 +3w-xxxx.h: 16846 +40x: 4096 +40x_mmu.c: 4082 +42: 4096 +44x: 4096 +44x.c: 3615 +44x_emulate.c: 4512 +44x.h: 448 +44x_mmu.c: 2966 +44x_tlb.c: 13997 +44x_tlb.h: 2465 +4.Coding: 20212 +4level-fixup.h: 1028 +4xx: 4096 +4xx.c: 16297 +4xx.h: 1174 +512x: 4096 +5206: 4096 +5206e: 4096 +520x: 4096 +523x: 4096 +5249: 4096 +5272: 4096 +527x: 4096 +528x: 4096 +52xx: 4096 +5307: 4096 +532x: 4096 +53c700.c: 71188 +53c700_d.h_shipped: 28887 +53c700.h: 16652 +53c700.scr: 10894 +53c700.txt: 5042 +5407: 4096 +57xx_iscsi_constants.h: 7004 +57xx_iscsi_hsi.h: 36895 +5d: 4096 +5.Posting: 15211 +66b00c9dc3e1e071bde0ebfeadc40bbc1e8316: 298 +68328: 4096 +68328fb.c: 13570 +68328serial.c: 35841 +68328serial.h: 6237 +68360: 4096 +68360serial.c: 76262 +68EZ328: 4096 +68VZ328: 4096 +6c5e45fe4f1c83df9429b7c2668b41446baac2: 297 +6.Followthrough: 11745 +6pack.c: 24715 +6pack.txt: 7940 +6xx-suspend.S: 1086 +712_defconfig: 25531 +7206: 4096 +73: 4096 +7343: 4096 +770x: 4096 +7721: 4096 +7722: 4096 +7724: 4096 +7751: 4096 +7780: 4096 +7990.c: 22036 +7990.h: 10421 +7.AdvancedTopics: 9648 +7c: 4096 +7segled.c: 2698 +802: 4096 +80211core: 4096 +80211hdr.h: 12326 +80211mgr.c: 28179 +80211mgr.h: 23006 +8021q: 4096 +8139cp.c: 56138 +8139too.c: 71384 +8250_accent.c: 1071 +8250_acorn.c: 3194 +8250_boca.c: 1301 +8250.c: 83003 +8250_early.c: 6636 +8250_exar_st16c554.c: 1191 +8250_fourport.c: 1216 +8250_gsc.c: 3620 +8250.h: 2432 +8250_hp300.c: 7797 +8250_hub6.c: 1224 +8250_mca.c: 1375 +8250_pci.c: 93521 +8250_pci.h: 999 +8250-platform.c: 1091 +8250_pnp.c: 14783 +8253.h: 10999 +8253pit.h: 48 +8255.c: 10692 +8255.h: 1805 +82571.c: 48377 +82596.c: 41209 +82xx: 4096 +8390.c: 2094 +8390.h: 9629 +8390p.c: 2248 +83xx: 4096 +83xx-512x-pci.txt: 1323 +85xx: 4096 +86xx: 4096 +87: 4096 +8b: 4096 +8.Conclusion: 3137 +8xx: 4096 +8xx_immap.h: 14089 +8xxx_gpio.txt: 1343 +941a7798a5169ee0dd69a9e8d5c40ceb702023: 298 +9600.bin.ihex: 14715 +9p: 4096 +9p.h: 13443 +9p.txt: 5113 +a100u2w.c: 36919 +a100u2w.h: 16936 +a2065.c: 20730 +a2065.h: 5135 +a2091.c: 6445 +a2091.h: 1712 +a20.c: 3548 +a20r.c: 5261 +a3000.c: 6528 +a3000.h: 1807 +a3d.c: 11335 +a4000t.c: 3579 +a500_defconfig: 31440 +a800.c: 5950 +aachba.c: 84424 +aaci.c: 27297 +aaci.h: 7022 +aacraid: 4096 +aacraid.h: 53671 +aacraid.txt: 6849 +aaec2000.h: 8936 +aaed2000.c: 2298 +aaed2000.h: 1354 +aaed2000_kbd.c: 5059 +aarp.c: 25379 +ab3100-core.c: 22600 +ab3100.h: 3510 +abdac.c: 15469 +ABI: 4096 +abi.h: 782 +abituguru: 3731 +abituguru3: 2493 +abituguru3.c: 41974 +abituguru.c: 53440 +abituguru-datasheet: 12294 +abi.txt: 1413 +ABI.txt: 1413 +ablkcipher.c: 9484 +abort-ev4.S: 882 +abort-ev4t.S: 913 +abort-ev5tj.S: 987 +abort-ev5t.S: 912 +abort-ev6.S: 1320 +abort-ev7.S: 774 +abort-lv4t.S: 6546 +abort-macro.S: 1144 +abort-nommu.S: 462 +abs_addr.h: 1800 +abspath.c: 2808 +abs.S: 238 +abyss.c: 11197 +abyss.h: 1550 +ac3200.c: 11838 +ac97: 4096 +ac97_bus.c: 1681 +ac97.c: 4489 +ac97c.c: 26095 +ac97c.h: 2045 +ac97_codec.c: 36925 +ac97_codec.h: 15115 +ac97.h: 507 +ac97_id.h: 2422 +ac97_local.h: 1689 +ac97_patch.c: 128568 +ac97_patch.h: 4386 +ac97_pcm.c: 21244 +ac97_proc.c: 18243 +acadia_defconfig: 23272 +acadia.dts: 5188 +ac.c: 9202 +accel.c: 8625 +accel.h: 5627 +access.c: 10521 +accessibility: 4096 +access_ok.h: 1305 +accommon.h: 2825 +acconfig.h: 7688 +accounting: 4096 +acct.c: 17700 +acct.h: 5949 +acdebug.h: 6836 +acdispat.h: 10988 +acecad.c: 7982 +acenic: 4096 +acenic.c: 88166 +acenic.h: 16029 +acenv.h: 11821 +acerhdf.c: 14909 +acer-wmi.c: 30530 +acer-wmi.txt: 6480 +acevents.h: 6692 +acexcep.h: 12764 +acgcc.h: 2843 +acglobal.h: 14485 +achware.h: 4355 +acinterp.h: 16329 +ackvec.c: 12985 +ackvec.h: 3426 +acl7225b.c: 3794 +acl.c: 5321 +acl.h: 1548 +aclinux.h: 5049 +aclocal.h: 34614 +acmacros.h: 22966 +acm.txt: 4974 +acnames.h: 3482 +acnamesp.h: 10211 +acobject.h: 16573 +acopcode.h: 22365 +acorn.c: 12206 +acornfb.c: 35783 +acornfb.h: 4809 +acorn.h: 623 +acornscsi.c: 87770 +acornscsi.h: 9694 +acornscsi-io.S: 3320 +acoutput.h: 10925 +acparser.h: 7436 +acpi: 4096 +acpi_bus.h: 11195 +acpi.c: 6529 +acpica: 12288 +acpi-cpufreq.c: 21588 +acpi_drivers.h: 5322 +acpi-ext.c: 2774 +acpi-ext.h: 590 +acpi.h: 4768 +acpi_memhotplug.c: 14832 +acpi_numa.h: 471 +acpiosxf.h: 7880 +acpi_pcihp.c: 14898 +acpiphp_core.c: 10949 +acpiphp_glue.c: 44065 +acpiphp.h: 6325 +acpiphp_ibm.c: 14740 +acpi_pm.c: 6723 +acpi_pmtmr.h: 672 +acpi-processor.c: 1893 +acpixf.h: 12045 +acpredef.h: 18909 +acquirewdt.c: 8920 +acresrc.h: 11064 +acrestyp.h: 11267 +acs5k_defconfig: 28786 +acs5k_tiny_defconfig: 21413 +acstruct.h: 7738 +act2000: 4096 +act2000.h: 6271 +act2000_isa.c: 11978 +act2000_isa.h: 7615 +act200l-sir.c: 7142 +actables.h: 3945 +act_api.c: 23712 +act_api.h: 4195 +actbl1.h: 35761 +actbl.h: 15492 +act_gact.c: 5493 +action.c: 40 +action.h: 40 +act_ipt.c: 7564 +actisys-sir.c: 7692 +active_mm.txt: 3805 +act_mirred.c: 6285 +act_nat.c: 7265 +act_pedit.c: 6148 +act_police.c: 9833 +act_simple.c: 5238 +act_skbedit.c: 5510 +actypes.h: 34263 +acutils.h: 16898 +acx.c: 16590 +acx.h: 33552 +ad1816a: 4096 +ad1816a.c: 8825 +ad1816a.h: 5363 +ad1816a_lib.c: 30656 +ad1843.c: 16402 +ad1843.h: 1516 +ad1848: 4096 +ad1848.c: 75959 +ad1848.h: 982 +ad1848_mixer.h: 10957 +ad1889.c: 27048 +ad1889.h: 8073 +ad1980.c: 8427 +ad1980.h: 468 +ad73311.c: 2765 +ad73311.h: 2404 +ad7414.c: 7164 +ad7418.c: 8304 +ad7877.c: 20856 +ad7877.h: 796 +ad7879.c: 19019 +ad7879.h: 1004 +adaptec: 4096 +adapter.h: 400 +adb.c: 19706 +adb.h: 2770 +adbhid.c: 35627 +adb-iop.c: 6325 +adb_iop.h: 1081 +adc.c: 8573 +adc.h: 886 +ADC-LH7-Touchscreen: 2187 +adcxx.c: 8256 +adder875.c: 3142 +adder875_defconfig: 21956 +adder875-redboot.dts: 4102 +adder875-uboot.dts: 4072 +addi_amcc_S5920.c: 7563 +addi_amcc_S5920.h: 1016 +addi_amcc_s5933.h: 13296 +addi_apci_035.c: 128 +addi_apci_1032.c: 63 +addi_apci_1500.c: 63 +addi_apci_1516.c: 63 +addi_apci_1564.c: 63 +addi_apci_16xx.c: 63 +addi_apci_1710.c: 63 +addi_apci_2016.c: 63 +addi_apci_2032.c: 63 +addi_apci_2200.c: 63 +addi_apci_3001.c: 63 +addi_apci_3120.c: 63 +addi_apci_3200.c: 63 +addi_apci_3300.c: 63 +addi_apci_3501.c: 63 +addi_apci_3xxx.c: 63 +addi_apci_all.c: 468 +addi_common.c: 57084 +addi_common.h: 15536 +addi-data: 4096 +addi_eeprom.c: 35657 +addinitrd.c: 3837 +addnote.c: 5117 +addon_cpuid_features.c: 3269 +addRamDisk.c: 9120 +addr.c: 13176 +addrconf.c: 112491 +addrconf_core.c: 2484 +addrconf.h: 7261 +address.c: 10451 +addr.h: 615 +addrlabel.c: 14012 +addr-map.c: 3725 +addr-map.h: 1054 +addrs.h: 14810 +addrspace.h: 4233 +adfs: 4096 +adfs_fs.h: 1337 +adfs.h: 5064 +adfs.txt: 1816 +adi.c: 14310 +adlib.c: 3006 +adl_pci6208.c: 11803 +adl_pci7296.c: 4671 +adl_pci7432.c: 5617 +adl_pci8164.c: 9991 +adl_pci9111.c: 38266 +adl_pci9118.c: 69079 +adm1021: 4184 +adm1021.c: 14057 +adm1025: 2364 +adm1025.c: 19865 +adm1026: 4578 +adm1026.c: 60096 +adm1029.c: 13774 +adm1031: 1193 +adm1031.c: 31209 +adm8211.c: 56115 +adm8211.h: 18093 +adm9240: 6804 +adm9240.c: 24112 +adma.c: 5497 +adma.h: 13803 +adq12b.c: 12147 +ads7828: 1146 +ads7828.c: 8084 +ads7846.c: 31008 +ads7846.h: 1844 +ADSBitsy: 1396 +adssphere.c: 1810 +adt7462: 2515 +adt7462.c: 60645 +adt7470: 2759 +adt7470.c: 42397 +adt7473: 2757 +adt7473.c: 35779 +adt7475: 2578 +adt7475.c: 35318 +adummy.c: 3035 +adutux.c: 25427 +adv7170.c: 9645 +adv7175.c: 10457 +adv7343.c: 12608 +adv7343.h: 730 +adv7343_regs.h: 5764 +advansys: 4096 +advansys.c: 382572 +advansys.txt: 9492 +advantechwdt.c: 8222 +adv_pci1710.c: 46220 +adv_pci1723.c: 12975 +adv_pci_dio.c: 34130 +ae7400074d449189d41fceb6d6f871490d7842: 298 +aead.c: 12873 +aead.h: 2027 +aec62xx.c: 9392 +aedsp16.c: 36369 +ael1002.c: 41054 +aer: 4096 +aerdrv_acpi.c: 1347 +aerdrv.c: 8935 +aerdrv_core.c: 22958 +aerdrv_errprint.c: 5915 +aerdrv.h: 3468 +aer.h: 773 +aer_inject.c: 10715 +aes.c: 11973 +aes_ccm.c: 3589 +aes_ccm.h: 810 +aes_ccmp.c: 14024 +aes_ccmp.h: 1469 +aes_cmac.c: 2737 +aes_cmac.h: 587 +aes_generic.c: 63316 +aes_glue.c: 1691 +aes.h: 279 +aes-i586-asm_32.S: 10637 +aesni-intel_asm.S: 21991 +aesni-intel_glue.c: 19525 +aes_s390.c: 13814 +aes-x86_64-asm_64.S: 4820 +af802154.h: 1271 +af9005.c: 28215 +af9005-fe.c: 36514 +af9005.h: 120579 +af9005-remote.c: 4403 +af9005-script.h: 5193 +af9013.c: 38083 +af9013.h: 3095 +af9013_priv.h: 21508 +af9015.c: 43153 +af9015.h: 28439 +af_ax25.c: 45160 +af_bluetooth.c: 10089 +af_can.c: 23294 +af_can.h: 4053 +af_decnet.c: 54945 +afeb9260_defconfig: 29783 +af_econet.c: 25853 +affs: 4096 +affs.h: 10590 +affs_hardblocks.h: 1481 +affs.txt: 8188 +af_ieee802154.c: 8683 +af_ieee802154.h: 1620 +af_inet6.c: 29847 +af_inet.c: 40041 +af_ipx.c: 50967 +af_irda.c: 67827 +af_irda.h: 2964 +af_iucv.c: 41285 +af_iucv.h: 2495 +af_key.c: 102229 +af_llc.c: 29863 +af_netlink.c: 46590 +af_netrom.c: 33634 +af_packet.c: 55964 +af_phonet.c: 10845 +af_rds.c: 14309 +af_rose.c: 39337 +af_rxrpc.c: 20908 +af_rxrpc.h: 2017 +afs: 4096 +afs.c: 6434 +afs_cm.h: 1213 +afs_fs.h: 2342 +afs.h: 6110 +afs.txt: 7976 +afs_vl.h: 3680 +af_unix.c: 53673 +af_unix.h: 1891 +af_x25.c: 38538 +agent.c: 6214 +agent.h: 2106 +agg-rx.c: 10061 +agg-tx.c: 19983 +agnx: 4096 +agnx.h: 4414 +agp: 4096 +agp_backend.h: 909 +agpgart.h: 6567 +agp.h: 11594 +ah4.c: 7802 +ah6.c: 13438 +aha152x.c: 100462 +aha152x_core.c: 61 +aha152x.h: 10175 +aha152x_stub.c: 7843 +aha152x.txt: 6540 +aha1542.c: 50376 +aha1542.h: 4776 +aha1740.c: 19608 +aha1740.h: 4954 +ahash.c: 5607 +ahb.c: 4740 +ah.c: 3493 +ahci.c: 82058 +ah.h: 894 +aic7770.c: 9851 +aic7770_osm.c: 4437 +aic79xx_core.c: 299904 +aic79xx.h: 46803 +aic79xx_inline.h: 5997 +aic79xx_osm.c: 79947 +aic79xx_osm.h: 21300 +aic79xx_osm_pci.c: 10626 +aic79xx_pci.c: 27694 +aic79xx_pci.h: 3106 +aic79xx_proc.c: 10559 +aic79xx.reg: 73912 +aic79xx_reg.h_shipped: 71718 +aic79xx_reg_print.c_shipped: 19691 +aic79xx.seq: 72735 +aic79xx_seq.h_shipped: 29327 +aic79xx.txt: 24091 +aic7xxx: 4096 +aic7xxx_93cx6.c: 9761 +aic7xxx_93cx6.h: 3670 +aic7xxx_core.c: 216583 +aic7xxx.h: 42160 +aic7xxx_inline.h: 3774 +aic7xxx_old: 4096 +aic7xxx_old.c: 366880 +aic7xxx_old.txt: 24500 +aic7xxx_osm.c: 73118 +aic7xxx_osm.h: 21353 +aic7xxx_osm_pci.c: 12355 +aic7xxx_pci.c: 61842 +aic7xxx_pci.h: 5296 +aic7xxx_proc.c: 10950 +aic7xxx.reg: 38137 +aic7xxx_reg.h: 15305 +aic7xxx_reg.h_shipped: 23099 +aic7xxx_reg_print.c_shipped: 10818 +aic7xxx.seq: 70499 +aic7xxx_seq.c: 20747 +aic7xxx_seq.h_shipped: 32908 +aic7xxx.txt: 19701 +aic94xx: 4096 +aic94xx_dev.c: 11236 +aic94xx_dump.c: 36929 +aic94xx_dump.h: 1451 +aic94xx.h: 3007 +aic94xx_hwi.c: 38875 +aic94xx_hwi.h: 10646 +aic94xx_init.c: 28607 +aic94xx_reg.c: 10895 +aic94xx_reg_def.h: 74147 +aic94xx_reg.h: 10470 +aic94xx_sas.h: 22044 +aic94xx_scb.c: 27220 +aic94xx_sds.c: 37304 +aic94xx_sds.h: 4644 +aic94xx_seq.c: 47415 +aic94xx_seq.h: 2011 +aic94xx_task.c: 17414 +aic94xx_tmf.c: 20129 +aica.c: 18912 +aica.h: 2322 +aicasm: 4096 +aicasm.c: 20235 +aicasm_gram.y: 41937 +aicasm.h: 3213 +aicasm_insformat.h: 5394 +aicasm_macro_gram.y: 4072 +aicasm_macro_scan.l: 4166 +aicasm_scan.l: 15538 +aicasm_symbol.c: 16089 +aicasm_symbol.h: 4889 +aiclib.c: 1599 +aiclib.h: 6327 +aio_abi.h: 3060 +aio_aio12_8.c: 5597 +aio.c: 9345 +aio.h: 530 +aio_iiro_16.c: 4521 +aiptek.c: 63719 +aircable.c: 16905 +airo.c: 224549 +airo_cs.c: 16214 +airo.h: 272 +aironet.c: 38 +aironet.h: 31 +airport.c: 6741 +airq.c: 3567 +airq.h: 530 +ak4104.c: 8783 +ak4104.h: 143 +ak4114.c: 18943 +ak4114.h: 10191 +ak4117.c: 16871 +ak4117.h: 9193 +ak4396.h: 1065 +ak4531_codec.c: 17543 +ak4531_codec.h: 3161 +ak4535.c: 18361 +ak4535.h: 1042 +ak4xxx-adda.c: 25308 +ak4xxx-adda.h: 3333 +ak4xxx.c: 5039 +aki3068net: 4096 +alauda.c: 34485 +alaw_main.csp.ihex: 3714 +alchemy: 4096 +alchemy-flash.c: 4191 +algapi.c: 16668 +algapi.h: 8721 +algboss.c: 6296 +algos: 4096 +ali14xx.c: 6564 +ali5451: 4096 +ali5451.c: 59400 +ali-agp.c: 10369 +alias.c: 1447 +aliasing-test.c: 6103 +aliasing.txt: 8753 +alias.txt: 1181 +align.c: 24429 +alignment.c: 23757 +align.S: 11650 +ali-ircc.c: 57570 +ali-ircc.h: 7748 +alim1535_wdt.c: 10224 +alim15x3.c: 14978 +alim7101_wdt.c: 11048 +allocator.c: 10151 +alloc.c: 10261 +alloc.h: 9219 +allocpercpu.c: 4150 +alpaca.h: 1209 +alpha: 4096 +alpha-agp.c: 5476 +alpha_ksyms.c: 2696 +alphatrack.c: 23326 +alphatrack.h: 2005 +alps.c: 15813 +alps.h: 1047 +ALS: 3770 +als100.c: 9384 +als300.c: 23789 +als4000.c: 32136 +alsa: 4096 +alsa.c: 2430 +ALSA-Configuration.txt: 75006 +alsa-driver-api.tmpl: 3216 +alsa.h: 370 +alternative-asm.h: 289 +alternative.c: 14237 +alternative.h: 5895 +altpciechdma: 4096 +altpciechdma.c: 37598 +am200epd.c: 9652 +am200epdkit_defconfig: 26949 +am300epd.c: 6564 +am79c961a.c: 18502 +am79c961a.h: 3109 +am9513.h: 1940 +amba: 4096 +amba-clcd.c: 12494 +ambakmi.c: 4554 +amba-pl010.c: 19490 +amba-pl011.c: 21509 +amba-pl022.c: 53346 +ambassador.c: 68387 +ambassador.h: 16192 +amcc: 4096 +amcc_s5933_58.h: 14263 +amcc_s5933.h: 6603 +amd5536udc.c: 86854 +amd5536udc.h: 17276 +amd64-agp.c: 20128 +amd64_edac.c: 98492 +amd64_edac_dbg.c: 5401 +amd64_edac_err_types.c: 3628 +amd64_edac.h: 19221 +amd64_edac_inj.c: 4304 +amd74xx.c: 10198 +amd76x_edac.c: 9371 +amd76xrom.c: 9404 +amd7930.c: 31102 +amd7930_fn.c: 23626 +amd7930_fn.h: 1162 +amd8111e.c: 53690 +amd8111_edac.c: 16756 +amd8111_edac.h: 4244 +amd8111e.h: 21006 +amd8131_edac.c: 10985 +amd8131_edac.h: 3772 +amd_bus.c: 13843 +amd.c: 3180 +amd_iommu.c: 52618 +amd_iommu.h: 1421 +amd_iommu_init.c: 34814 +amd_iommu_types.h: 13377 +amd-k7-agp.c: 15673 +amd-powernow.txt: 1673 +amd-rng.c: 3458 +amifb.c: 103212 +amifd.h: 1995 +amifdreg.h: 2674 +amiflop.c: 46962 +amiga: 4096 +amiga.c: 3445 +amiga_defconfig: 28613 +amigaffs.c: 11549 +amigaffs.h: 2927 +amiga.h: 116 +amigahw.h: 11232 +amigaints.h: 3583 +amigaone: 4096 +amigaone_defconfig: 40433 +amigaone.dts: 4189 +amigayle.h: 3135 +amiints.c: 6489 +amijoy.c: 4591 +amijoy.txt: 7701 +amikbd.c: 6468 +amimouse.c: 3296 +amipcmcia.h: 2568 +amiserial.c: 54254 +amisound.c: 2828 +amix86.c: 23331 +amlcode.h: 18976 +aml_nfw.c: 5630 +amlresrc.h: 9975 +amon.h: 141 +amp.c: 2736 +amp.h: 1594 +amplc_dio200.c: 38731 +amplc_pc236.c: 16962 +amplc_pc263.c: 11680 +amplc_pci224.c: 44174 +amplc_pci230.c: 92910 +ams: 4096 +ams-core.c: 6046 +ams-delta.c: 5974 +ams_delta_defconfig: 28481 +amsdu.c: 5428 +ams.h: 1354 +ams-i2c.c: 6365 +ams-input.c: 3542 +amso1100: 4096 +ams-pmu.c: 4469 +analog.c: 20366 +anchor.h: 3882 +anchors.txt: 2625 +android: 4096 +ani.c: 23441 +ani.h: 4062 +anode.c: 14491 +anomaly.h: 11228 +anon_inodes.c: 5477 +anon_inodes.h: 312 +ansi_cprng.c: 10011 +ansidecl.h: 4393 +ans-lcd.c: 3847 +ans-lcd.h: 206 +anubis.c: 28484 +anubis-cpld.h: 652 +anubis-irq.h: 596 +anubis-map.h: 1219 +anycast.c: 11884 +anysee.c: 15434 +anysee.h: 14174 +aoa: 4096 +aoa-gpio.h: 2434 +aoa.h: 3816 +aoe: 4096 +aoeblk.c: 7321 +aoechr.c: 6092 +aoecmd.c: 23023 +aoedev.c: 5392 +aoe.h: 4748 +aoemain.c: 2032 +aoenet.c: 3237 +aoe.txt: 4600 +aops.c: 49318 +aops.h: 4017 +a.out-core.h: 2444 +a.out.h: 2438 +ap325rxa_defconfig: 31462 +apanel.c: 8043 +apb.h: 1043 +ap_bus.c: 45317 +ap_bus.h: 6091 +apc.c: 4412 +apc.h: 1682 +APCI1710_82x54.c: 55614 +APCI1710_82x54.h: 2408 +APCI1710_Chrono.c: 75530 +APCI1710_Chrono.h: 2397 +APCI1710_Dig_io.c: 35243 +APCI1710_Dig_io.h: 1437 +APCI1710_INCCPT.c: 206966 +APCI1710_INCCPT.h: 10615 +APCI1710_Inp_cpt.c: 32511 +APCI1710_Inp_cpt.h: 1414 +APCI1710_Pwm.c: 110859 +APCI1710_Pwm.h: 2722 +APCI1710_Ssi.c: 30348 +APCI1710_Ssi.h: 1343 +APCI1710_Tor.c: 70692 +APCI1710_Tor.h: 1684 +APCI1710_Ttl.c: 35072 +APCI1710_Ttl.h: 1338 +apdbg.c: 12729 +aperture_64.c: 13850 +ap.h: 26 +apic: 4096 +api.c: 4766 +apic.c: 56323 +apicdef.h: 10790 +apic_flat_64.c: 9680 +apic.h: 48 +apicnum.h: 229 +API.html: 738 +api-intro.txt: 6569 +apm_32.c: 71310 +apm-acpi.txt: 1541 +apm_bios.h: 5647 +apm.c: 1961 +apm_emu.c: 3225 +apm-emulation.c: 17959 +apm-emulation.h: 1575 +apm.h: 1722 +apm_power.c: 10334 +apm-power.c: 2659 +apne.c: 17115 +apollo: 4096 +apollo_defconfig: 25574 +apollodma.h: 9409 +apollohw.h: 2876 +appldata: 4096 +appldata_base.c: 16414 +appldata.h: 2269 +appldata_mem.c: 4196 +appldata_net_sum.c: 4240 +appldata_os.c: 6134 +appledisplay.c: 9793 +applesmc.c: 46139 +appletalk: 4096 +appletouch.c: 25051 +appletouch.txt: 3199 +applicom.c: 24465 +applicom.h: 2558 +applying-patches.txt: 19961 +applypatch-msg.sample: 452 +aq100x.c: 8974 +ar7: 4096 +ar7_defconfig: 29419 +ar7.h: 4432 +ar7part.c: 4186 +ar7_wdt.c: 8576 +ar9170: 4096 +ar9170.h: 7335 +ar-accept.c: 12406 +ar-ack.c: 33274 +arbiter.c: 11549 +arbiter.h: 607 +arc: 4096 +arc4.c: 2066 +ar-call.c: 21724 +arc_con.c: 973 +arcdevice.h: 12708 +arcfb.c: 16908 +arcfb.h: 150 +arch: 4096 +arch_checks.c: 3045 +arches_defconfig: 19397 +arches.dts: 7694 +arch.h: 1650 +arch-kev7a400.c: 2933 +arch-lpd7a40x.c: 10208 +archparam.h: 246 +archsetjmp.h: 363 +arch-v10: 4096 +arch-v32: 4096 +arcmsr: 4096 +arcmsr_attr.c: 12953 +arcmsr.h: 22540 +arcmsr_hba.c: 68471 +arcmsr_spec.txt: 22891 +arcnet: 4096 +arcnet.c: 30476 +arcnet-hardware.txt: 112635 +arcnet.txt: 23983 +arcofi.c: 3664 +arcofi.h: 721 +ar-connection.c: 23383 +ar-connevent.c: 9295 +arc-rawmode.c: 5274 +arc-rimi.c: 10949 +ar-error.c: 5949 +argv_split.c: 1893 +ariadne.c: 24224 +ariadne.h: 15566 +ar-input.c: 20380 +ar-internal.h: 28881 +ark3116.c: 12365 +ar-key.c: 8236 +arkfb.c: 31427 +arkfb.txt: 2024 +arlan.h: 16773 +arlan-main.c: 51969 +arlan-proc.c: 30009 +ar-local.c: 7670 +arm: 4096 +armadillo5x0.c: 7149 +ARM-gcc.h: 4503 +armksyms.c: 4758 +arm_timer.h: 576 +ar-output.c: 18343 +arp.c: 35296 +ar-peer.c: 7599 +arp.h: 1028 +ar-proc.c: 5159 +arptable_filter.c: 3496 +arp_tables.c: 47085 +arp_tables.h: 8551 +arpt_mangle.c: 2391 +arpt_mangle.h: 547 +array.c: 13244 +arrayRCU.txt: 4475 +ar-recvmsg.c: 11003 +ar-security.c: 5588 +ar-skbuff.c: 3506 +arthur.c: 2275 +artpec_3_defconfig: 13781 +ar-transport.c: 7196 +arv.c: 22235 +arxescsi.c: 9967 +asb100: 2093 +asb100.c: 29220 +asb2303_defconfig: 13559 +asciidoc.conf: 2238 +asequencer.h: 24733 +ashiftrt.S: 3468 +ashldi3.c: 1516 +__ashldi3.S: 1340 +ashldi3.S: 1594 +ashlsi3.S: 3814 +ashrdi3.c: 1578 +__ashrdi3.S: 1359 +ashrdi3.S: 1594 +ashrsi3.S: 3765 +ashxdi3.S: 5014 +asic3.c: 23429 +asic3.h: 11966 +asids-debugfs.c: 1875 +asi.h: 13855 +asiliantfb.c: 17057 +as-iosched.c: 39676 +as-iosched.txt: 8697 +asix.c: 39119 +as-layout.h: 1666 +asl.c: 9101 +asm: 4096 +asm-compat.h: 1951 +asm-generic: 4096 +asm.h: 9481 +asmmacro-32.h: 4815 +asmmacro-64.h: 3961 +asmmacro.h: 2767 +asm-offsets_32.c: 5194 +asm-offsets_64.c: 3637 +asm-offsets.c: 4611 +asmregs.h: 3115 +asn1.c: 15700 +asoundef.h: 14263 +asound_fm.h: 4313 +asound.h: 39901 +asp8347_defconfig: 35011 +asp834x.c: 2108 +asp834x-redboot.dts: 6941 +asp.c: 3631 +aspenite.c: 2671 +asp.h: 608 +aspm.c: 25790 +Assabet: 9201 +assabet.c: 11283 +assabet_defconfig: 17595 +assabet.h: 4477 +assembler.h: 2834 +assembly.h: 12972 +assoc.c: 36 +assoc.h: 408 +association.h: 4661 +associola.c: 43957 +ast.c: 3630 +ast.h: 878 +asus_acpi.c: 39676 +asus_atk0110.c: 24097 +asuscom.c: 11573 +asus-laptop.c: 36214 +asus_oled: 4096 +asus_oled.c: 18945 +async.c: 11128 +asyncdata.c: 15045 +async.h: 973 +async_memcpy.c: 3227 +async_memset.c: 2994 +async-thread.c: 13350 +async-thread.h: 3400 +async_tx: 4096 +async-tx-api.txt: 8950 +async_tx.c: 8062 +async_tx.h: 5062 +async_xor.c: 9790 +at1700.c: 25461 +at24.c: 17172 +at24.h: 1084 +at25.c: 10286 +at32ap700x.c: 54284 +at32ap700x.h: 9017 +at32ap700x_wdt.c: 10216 +at32psif.c: 8545 +at73c213.c: 28442 +at73c213.h: 3187 +at76c50x-usb.c: 69577 +at76c50x-usb.h: 11556 +at76_usb: 4096 +at76_usb.c: 159931 +at76_usb.h: 18785 +at91_adc.h: 2447 +at91_aic.h: 2578 +at91cap9adk_defconfig: 28118 +at91cap9.c: 9260 +at91cap9_ddrsdr.h: 4803 +at91cap9_devices.c: 32852 +at91cap9.h: 5120 +at91cap9_matrix.h: 8438 +at91_cf.c: 10319 +at91_dbgu.h: 2878 +at91_ether.c: 37656 +at91_ether.h: 3116 +at91_ide.c: 10538 +at91_mci.c: 31894 +at91_mci.h: 5220 +at91_pio.h: 2085 +at91_pit.h: 1189 +at91_pmc.h: 6822 +at91rm9200.c: 8544 +at91rm9200_devices.c: 32118 +at91rm9200dk_defconfig: 19334 +at91rm9200ek_defconfig: 19319 +at91rm9200_emac.h: 6334 +at91rm9200.h: 4634 +at91rm9200_mc.h: 7552 +at91rm9200_time.c: 6137 +at91rm9200_wdt.c: 6655 +at91_rstc.h: 1684 +at91_rtc.h: 3381 +at91_rtt.h: 1335 +at91sam9260.c: 9719 +at91sam9260_devices.c: 28830 +at91sam9260ek_defconfig: 23675 +at91sam9260.h: 5601 +at91sam9260_matrix.h: 4360 +at91sam9261.c: 7811 +at91sam9261_devices.c: 27547 +at91sam9261ek_defconfig: 27131 +at91sam9261.h: 3985 +at91sam9261_matrix.h: 3171 +at91sam9263.c: 8693 +at91sam9263_devices.c: 36564 +at91sam9263ek_defconfig: 27888 +at91sam9263.h: 5088 +at91sam9263_matrix.h: 7531 +at91sam926x_time.c: 4812 +at91sam9g20ek_defconfig: 26082 +at91sam9rl.c: 8144 +at91sam9rl_devices.c: 28643 +at91sam9rlek_defconfig: 21184 +at91sam9rl.h: 4332 +at91sam9rl_matrix.h: 5086 +at91sam9_sdramc.h: 3914 +at91sam9_smc.h: 3570 +at91sam9_wdt.c: 7764 +at91_shdwc.h: 1497 +at91_spi.h: 3738 +at91_ssc.h: 4846 +at91_st.h: 1983 +at91_tc.h: 6897 +at91_twi.h: 3075 +at91_udc.c: 48229 +at91_udc.h: 6283 +at91_wdt.h: 1464 +at91x40.c: 1914 +at91x40.h: 2025 +at91x40_time.c: 2547 +at93c.c: 2613 +at93c.h: 292 +ata: 12288 +ata.c: 4208 +ata_defs_asm.h: 8736 +ata_defs.h: 6434 +atafb.c: 91174 +atafb.h: 1708 +atafb_iplan2p2.c: 6818 +atafb_iplan2p4.c: 7301 +atafb_iplan2p8.c: 8377 +atafb_mfb.c: 2554 +atafb_utils.h: 11235 +atafd.h: 261 +atafdreg.h: 2704 +ataflop.c: 52286 +ata_generic.c: 6543 +atags.c: 1588 +atags.h: 132 +ata.h: 787 +ataints.c: 14727 +atakbd.c: 6402 +atakeyb.c: 15982 +atalk.h: 5240 +atalk_proc.c: 7290 +ata_piix.c: 45848 +ata_platform.h: 910 +atari: 4096 +atari.c: 3911 +atari_defconfig: 26788 +atari.h: 1077 +atarihw.h: 20620 +atariints.h: 5520 +atari_joystick.h: 418 +atarikbd.txt: 26109 +atarikb.h: 1514 +atarilance.c: 34168 +atarimouse.c: 3865 +atari_NCR5380.c: 92608 +atari_scsi.c: 35928 +atari_scsi.h: 5820 +atari_stdma.h: 458 +atari_stram.h: 429 +atasound.c: 2705 +ateb9200_defconfig: 26557 +aten2011.c: 65277 +aten.c: 3343 +ath: 4096 +ath5k: 4096 +ath5k.h: 45994 +ath9k: 4096 +ath9k.h: 20541 +ath9k_platform.h: 1116 +athr_common.h: 4056 +ati-agp.c: 14653 +ati_ids.h: 8172 +atiixp.c: 5592 +atiixp_modem.c: 36739 +ati_pcigart.c: 5516 +ati_remote2.c: 23391 +ati_remote.c: 27913 +atkbd.c: 40410 +atl1c: 4096 +atl1.c: 101403 +atl1c_ethtool.c: 9188 +atl1c.h: 20395 +atl1c_hw.c: 13975 +atl1c_hw.h: 31069 +atl1c_main.c: 77505 +atl1e: 4096 +atl1e_ethtool.c: 11679 +atl1e.h: 17562 +atl1e_hw.c: 16680 +atl1e_hw.h: 38581 +atl1e_main.c: 71172 +atl1e_param.c: 7245 +atl1.h: 24023 +atl2.c: 82456 +atl2.h: 16349 +atlas_btns.c: 4752 +atlx: 4096 +atlx.c: 7198 +atlx.h: 18176 +atm: 4096 +atmapi.h: 889 +atmarp.h: 1233 +atmbr2684.h: 3208 +atmclip.h: 513 +atmdev.h: 16681 +atmel: 4096 +atmel-abdac.h: 626 +atmel-ac97c.h: 1409 +atmel.c: 132756 +atmel_cs.c: 17914 +atmel.h: 1533 +atmel_lcdc.h: 7265 +atmel_lcdfb.c: 31305 +atmel-mci.c: 43139 +atmel-mci.h: 1269 +atmel-mci-regs.h: 6476 +atmel_nand.c: 15137 +atmel_nand_ecc.h: 1412 +atmel_pci.c: 2533 +atmel-pcm.c: 14083 +atmel-pcm.h: 2987 +atmel_pdc.h: 1410 +atmel-pwm-bl.c: 6152 +atmel-pwm-bl.h: 1550 +atmel_pwm.c: 9359 +atmel_pwm.h: 2724 +atmel_read_eeprom.c: 3671 +atmel_read_eeprom.h: 2413 +atmel_serial.c: 40894 +atmel_serial.h: 6087 +atmel_spi.c: 23923 +atmel_spi.h: 4446 +atmel-ssc.c: 3605 +atmel_ssc_dai.c: 20632 +atmel_ssc_dai.h: 3265 +atmel-ssc.h: 9369 +atmel_tc.h: 11075 +atmel_tclib.c: 3626 +atmel_tsadcc.c: 10816 +atmel_usba_udc.c: 50940 +atmel_usba_udc.h: 10031 +atmel-wm97xx.c: 11848 +atm_eni.h: 585 +atm.h: 7995 +atm_he.h: 343 +atm_idt77105.h: 892 +atmioc.h: 1583 +atmlec.h: 2561 +atm_misc.c: 2638 +atmmpc.h: 4163 +atm_nicstar.h: 1215 +atmppp.h: 576 +atmsap.h: 4907 +atmsar11.HEX: 19191 +atm_suni.h: 253 +atmsvc.h: 1790 +atm_sysfs.c: 3945 +atmtcp.c: 11650 +atm_tcp.h: 1768 +atm.txt: 426 +atm_zatm.h: 1606 +atngw100: 4096 +atngw100_defconfig: 28242 +atngw100_evklcd100_defconfig: 29353 +atngw100_evklcd101_defconfig: 29353 +atngw100_mrmt_defconfig: 33751 +atombios_crtc.c: 23254 +atombios.h: 221852 +atom-bits.h: 1882 +atom.c: 29689 +atom.h: 4494 +atomic32.c: 2859 +atomic_32.h: 11086 +atomic_32.S: 2663 +atomic64.c: 3863 +atomic_64.h: 10903 +atomic64.h: 1840 +atomic64-ops.S: 4827 +atomic_64.S: 2925 +atomic-grb.h: 4642 +atomic.h: 7333 +atomic-irq.h: 1375 +atomic-llsc.h: 2813 +atomic-long.h: 5244 +atomic_mm.h: 4061 +atomic_no.h: 3556 +atomic-ops.S: 5339 +atomic_ops.txt: 19503 +atomic-ops.txt: 4632 +atomic.S: 15917 +atom-names.h: 4758 +atom-types.h: 1430 +atp870u.c: 86512 +atp870u.h: 1487 +atp.c: 29816 +atp.h: 8737 +atstk1000: 4096 +atstk1000.h: 535 +atstk1002.c: 8012 +atstk1002_defconfig: 30107 +atstk1003.c: 3765 +atstk1003_defconfig: 25774 +atstk1004.c: 3756 +atstk1004_defconfig: 15379 +atstk1006_defconfig: 32583 +attach.c: 9647 +attr.c: 2666 +attrib.c: 91896 +attrib.h: 4321 +attribute_container.c: 12242 +attribute_container.h: 2530 +atxp1.c: 9417 +aty: 4096 +aty128fb.c: 67277 +aty128fb.txt: 2119 +aty128.h: 13554 +atyfb_base.c: 111634 +atyfb.h: 8973 +au0828: 4096 +au0828-cards.c: 9773 +au0828-cards.h: 1060 +au0828-core.c: 7629 +au0828-dvb.c: 11151 +au0828.h: 7385 +au0828-i2c.c: 9287 +au0828-reg.h: 2134 +au0828-video.c: 41940 +au1000_db1x00.c: 7294 +au1000_dma.h: 11212 +au1000_eth.c: 33708 +au1000_eth.h: 3012 +au1000_generic.c: 14674 +au1000_generic.h: 4280 +au1000.h: 53188 +au1000_ircc.h: 3758 +au1000_pb1x00.c: 9234 +au1000_xxs1500.c: 4378 +au1100fb.c: 20752 +au1100fb.h: 14620 +au1100_mmc.h: 5888 +au1200fb.c: 52491 +au1200fb.h: 18704 +au1550_ac97.c: 51655 +au1550nd.c: 14821 +au1550_spi.c: 26531 +au1550_spi.h: 433 +au1k_ir.c: 20249 +au1x: 4096 +au1x00.c: 19173 +au1xmmc.c: 28453 +au1xxx_dbdma.h: 13134 +au1xxx.h: 1723 +au1xxx-ide.c: 15369 +au1xxx_ide.h: 6491 +AU1xxx_IDE.README: 4039 +au1xxx_psc.h: 15895 +au6610.c: 6091 +au6610.h: 1286 +au8522_decoder.c: 27416 +au8522_dig.c: 21506 +au8522.h: 2387 +au8522_priv.h: 17128 +au8810.c: 379 +au8810.h: 7007 +au8820.c: 331 +au8820.h: 6479 +au8830.c: 404 +au8830.h: 8629 +au88x0: 4096 +au88x0_a3d.c: 25257 +au88x0_a3ddata.c: 2908 +au88x0_a3d.h: 4336 +au88x0.c: 10316 +au88x0_core.c: 78891 +au88x0_eq.c: 23045 +au88x0_eqdata.c: 3952 +au88x0_eq.h: 1287 +au88x0_game.c: 3655 +au88x0.h: 8929 +au88x0_mixer.c: 773 +au88x0_mpu401.c: 3619 +au88x0_pcm.c: 15858 +au88x0_synth.c: 11076 +au88x0_wt.h: 2347 +au88x0_xtalk.c: 23426 +au88x0_xtalk.h: 2304 +Audigy-mixer.txt: 13956 +audio.c: 7519 +AudioExcelDSP16: 3886 +audio.h: 525 +Audiophile-Usb.txt: 17915 +audit_64.c: 1870 +audit.c: 1888 +audit_change_attr.h: 320 +audit_dir_write.h: 238 +auditfilter.c: 34110 +audit.h: 394 +audit_read.h: 127 +auditsc.c: 67706 +audit_signal.h: 36 +audit_tree.c: 22256 +audit_watch.c: 14765 +audit_write.h: 255 +aureon.c: 64017 +aureon.h: 2419 +autcpu12.c: 5831 +autcpu12.h: 2590 +autcpu12-nvram.c: 3124 +auth.c: 35 +authenc.c: 13429 +authenc.h: 609 +auth_generic.c: 4800 +auth_gss: 4096 +auth_gss.c: 40950 +auth_gss.h: 2256 +auth.h: 540 +auth_null.c: 2607 +authorization.txt: 2640 +authors: 38 +AUTHORS: 38 +auth_rsp.c: 39 +auth_unix.c: 5607 +auto_dev-ioctl.h: 5186 +autofs: 4096 +autofs4: 4096 +auto_fs4.h: 4095 +autofs4-mount-control.txt: 17706 +auto_fs.h: 2467 +autofs_i.h: 7355 +autoload.c: 967 +autoload.sh: 339 +automount-support.txt: 4694 +autoprobe.c: 4772 +auxdisplay: 4096 +auxio_32.c: 3721 +auxio_32.h: 2622 +auxio_64.c: 3214 +auxio_64.h: 3266 +auxio.h: 176 +aux_reg.h: 646 +auxvec.h: 60 +av7110: 4096 +av7110_av.c: 40033 +av7110_av.h: 1214 +av7110.c: 82729 +av7110_ca.c: 9180 +av7110_ca.h: 441 +av7110.h: 7155 +av7110_hw.c: 31995 +av7110_hw.h: 12512 +av7110_ipack.c: 7991 +av7110_ipack.h: 402 +av7110_ir.c: 11196 +av7110_v4l.c: 27884 +avc.c: 24534 +avc.h: 3102 +avc_ss.h: 617 +avermedia.txt: 13922 +avila.h: 917 +avila-pci.c: 1817 +avila-setup.c: 4610 +av_inherit.h: 1693 +avm: 4096 +avm_a1.c: 8303 +avma1_cs.c: 9468 +avm_a1p.c: 7146 +avmcard.h: 13933 +avm_cs.c: 9107 +avm_pci.c: 23187 +av_permissions.h: 53693 +av_perm_to_string.h: 10893 +avr32: 4096 +__avr32_asr64.S: 560 +avr32_ksyms.c: 1843 +__avr32_lsl64.S: 559 +__avr32_lsr64.S: 559 +avtab.c: 12842 +avtab.h: 2874 +aw2: 4096 +aw2-alsa.c: 22536 +aw2-saa7146.c: 12816 +aw2-saa7146.h: 3650 +aw2-tsl.c: 4092 +awacs.c: 32895 +awacs.h: 8192 +ax25: 4096 +ax25_addr.c: 6217 +ax25_dev.c: 4867 +ax25_ds_in.c: 7261 +ax25_ds_subr.c: 5218 +ax25_ds_timer.c: 5960 +ax25.h: 2752 +ax25_iface.c: 5067 +ax25_in.c: 10789 +ax25_ip.c: 5405 +ax25_out.c: 8933 +ax25_route.c: 11432 +ax25_std_in.c: 11343 +ax25_std_subr.c: 2329 +ax25_std_timer.c: 4335 +ax25_subr.c: 7113 +ax25_timer.c: 5261 +ax25.txt: 610 +ax25_uid.c: 5032 +ax88796.c: 25354 +ax88796.h: 751 +axisflashmap.c: 11854 +axisflashmap.h: 1932 +axnet_cs.c: 55656 +axon_msi.c: 11768 +axonram.c: 9510 +azt2320.c: 9995 +azt3328.c: 74771 +azt3328.h: 16466 +b128ops.h: 2471 +b180_defconfig: 30806 +b1.c: 20917 +b1dma.c: 24682 +b1isa.c: 6013 +b1lli.h: 1654 +b1pci.c: 10903 +b1pcmcia.c: 5718 +b1pcmcia.h: 666 +b2: 4096 +b2c2: 4096 +b3dfg: 4096 +b3dfg.c: 29136 +b43: 4096 +b43.h: 34564 +b43legacy: 4096 +b43legacy.h: 26792 +b43_pci_bridge.c: 1563 +b44.c: 58926 +b44.h: 17577 +ba_action.c: 43 +baboon.c: 2869 +backchannel_rqst.c: 9002 +backend-api.txt: 23417 +backend.c: 8969 +background.c: 4246 +backing-dev.c: 7753 +backing-dev.h: 7625 +backing_ops.c: 11152 +backlight: 4096 +backlight.c: 8488 +backlight.h: 1076 +backoff.h: 514 +backtrace.c: 2048 +backtrace.S: 3769 +backtracetest.c: 2135 +badge4.c: 7278 +badge4_defconfig: 25237 +badge4.h: 2530 +bad_inode.c: 8103 +bad_memory.txt: 1113 +balance: 5103 +balloc.c: 28466 +balloon.c: 15823 +bamboo.c: 1219 +bamboo_defconfig: 23088 +bamboo.dts: 7833 +barrier.h: 751 +barrier.txt: 10841 +base: 4096 +baseband.c: 69836 +baseband.h: 5142 +base.c: 17017 +base.h: 5692 +base.S: 2976 +bas-gigaset.c: 70245 +basic: 4096 +basic-pm-debugging.txt: 10323 +basic_profiling.txt: 1707 +basler: 4096 +bast-cpld.h: 1556 +bast-ide.c: 2522 +bast-irq.c: 3575 +bast-irq.h: 842 +bast-map.h: 5001 +bast-pmu.h: 1140 +battery.c: 26147 +baycom_epp.c: 34930 +baycom.h: 820 +baycom_par.c: 16899 +baycom_ser_fdx.c: 21220 +baycom_ser_hdx.c: 21005 +baycom.txt: 7038 +bbc_envctrl.c: 15825 +bbc.h: 9957 +bbc_i2c.c: 9865 +bbc_i2c.h: 1987 +bbm.h: 4408 +bcache.h: 1450 +bcast.c: 21337 +bcast.h: 5594 +bcd.c: 257 +bcd.h: 195 +bcm1480: 4096 +bcm1480_int.h: 18356 +bcm1480_l2c.h: 8696 +bcm1480_mc.h: 51843 +bcm1480_regs.h: 42338 +bcm1480_scd.h: 15457 +bcm203x.c: 7066 +bcm3510.c: 21894 +bcm3510.h: 1667 +bcm3510_priv.h: 9194 +bcm47xx: 4096 +bcm47xx_defconfig: 44162 +bcm47xx.h: 914 +bcm47xx_wdt.c: 6278 +bcm5974.c: 22743 +bcm5974.txt: 2275 +bcm.c: 39855 +bcm.h: 2057 +bcom_ata_task.c: 1873 +bcom_fec_rx_task.c: 2688 +bcom_fec_tx_task.c: 3548 +bcom_gen_bd_rx_task.c: 1901 +bcom_gen_bd_tx_task.c: 2118 +bc_svc.c: 2387 +bcu.c: 5507 +bc_xprt.h: 1873 +bdx.bin.ihex: 117765 +beacon.c: 16577 +bearer.c: 17977 +bearer.h: 6277 +beat.c: 5680 +beat.h: 1477 +beat_htab.c: 12023 +beat_hvCall.S: 4654 +beat_interrupt.c: 7398 +beat_interrupt.h: 1147 +beat_iommu.c: 3142 +beat_smp.c: 2934 +beat_spu_priv1.c: 5295 +beat_syscall.h: 9338 +beat_udbg.c: 2419 +beat_wrapper.h: 7284 +be_byteshift.h: 1424 +be_cmds.c: 28134 +be_cmds.h: 21092 +beep.c: 7937 +be_ethtool.c: 10213 +befs: 4096 +befs_fs_types.h: 5040 +befs.h: 3265 +befs.txt: 3636 +be.h: 9794 +be_hw.h: 6736 +belkin_sa.c: 17581 +belkin_sa.h: 5114 +be_main.c: 53536 +be_memmove.h: 770 +Benchmark.h: 14912 +benet: 4096 +berry_charge.c: 5094 +bestcomm: 4096 +bestcomm.c: 13444 +bestcomm.h: 5696 +bestcomm_priv.h: 10178 +be_struct.h: 749 +BF518F-EZBRD_defconfig: 30487 +bf518.h: 3233 +BF526-EZBRD_defconfig: 37925 +BF527-EZKIT_defconfig: 39344 +bf527.h: 3368 +BF533-EZKIT_defconfig: 27699 +bf533.h: 3987 +BF533-STAMP_defconfig: 31991 +bf537.h: 3679 +BF537-STAMP_defconfig: 33322 +BF538-EZKIT_defconfig: 31824 +bf538.h: 3110 +BF548-EZKIT_defconfig: 41918 +bf548.h: 3408 +bf54x-keys.c: 10383 +bf54x_keys.h: 373 +bf54x-lq043fb.c: 19521 +bf54x-lq043.h: 486 +BF561-EZKIT_defconfig: 27483 +bf561.h: 5899 +bf5xx-ac97.c: 10719 +bf5xx-ac97.h: 1698 +bf5xx-ac97-pcm.c: 13449 +bf5xx-ac97-pcm.h: 595 +bf5xx-ad1980.c: 3043 +bf5xx-ad73311.c: 6491 +bf5xx-i2s.c: 8397 +bf5xx-i2s.h: 321 +bf5xx-i2s-pcm.c: 7810 +bf5xx-i2s-pcm.h: 591 +bf5xx_nand.c: 19911 +bf5xx-sport.c: 26015 +bf5xx-sport.h: 5191 +bf5xx-ssm2602.c: 4846 +bfin_5xx.c: 37574 +bfin5xx_spi.h: 3282 +bfin-async-flash.c: 5961 +bfin_cf_pcmcia.c: 8045 +bfind.c: 4484 +bfin_dma_5xx.c: 13838 +bfin-global.h: 3579 +bfin_gpio.c: 31670 +bfin-gpio-notes.txt: 2459 +bfin_jtag_comm.c: 9699 +bfin_ksyms.c: 3302 +bfin_mac.c: 29136 +bfin_mac.h: 1654 +bfin_oprofile.c: 303 +bfin-otp.c: 4874 +bfin_sdh.h: 273 +bfin_serial_5xx.h: 5124 +bfin_simple_timer.h: 446 +bfin_sir.c: 18943 +bfin_sir.h: 5300 +bfin_sport.h: 3839 +bfin_sport_uart.c: 16463 +bfin_sport_uart.h: 3726 +bfin-t350mcqb-fb.c: 16570 +bfin_wdt.c: 11813 +bfrom.h: 3443 +bfs: 4096 +bfs_fs.h: 1830 +bfs.h: 1424 +bfs.txt: 2118 +bfusb.c: 17036 +bif_core_defs_asm.h: 15240 +bif_core_defs.h: 9672 +bif_dma_defs_asm.h: 22539 +bif_dma_defs.h: 14998 +bif_slave_defs_asm.h: 11664 +bif_slave_defs.h: 8256 +big_endian.h: 3729 +big-endian.S: 304 +BIG.FAT.WARNING: 234 +bigsmp_32.c: 6414 +bigsur_defconfig: 32018 +bigsur.h: 1540 +bin2c.c: 702 +bin2hex.c: 755 +bin.c: 11164 +bind_addr.c: 13678 +bind.c: 7327 +bindec.S: 28113 +binder.c: 105864 +binder.h: 9073 +bind.h: 1305 +binding.txt: 3687 +binfmt_aout.c: 13156 +binfmt_elf32.c: 3565 +binfmt_elf.c: 55465 +binfmt_elf_fdpic.c: 48887 +binfmt_elfn32.c: 3368 +binfmt_elfo32.c: 4508 +binfmt_em86.c: 2848 +binfmt_flat.c: 27410 +binfmt_loader.c: 1116 +binfmt_misc.c: 15436 +binfmt_misc.txt: 6108 +binfmt_script.c: 2829 +binfmts.h: 4146 +binfmt_som.c: 7567 +binoffset.c: 4039 +binstr.S: 4302 +bio.c: 39950 +biodoc.txt: 55452 +bio.h: 20583 +bio-integrity.c: 21385 +bios32.c: 17673 +bios.c: 2953 +bioscall.S: 1566 +bioscalls.c: 13235 +bios_ebda.h: 794 +bios.h: 3282 +bios_uv.c: 4629 +bitblit.c: 10909 +bitext.c: 2979 +bitext.h: 613 +bitfield.h: 19835 +bitmap.c: 45202 +bitmap.h: 10515 +bit_operations.h: 5627 +bitops: 4096 +bitops_32.h: 2988 +bitops_64.h: 2428 +bitops.c: 1091 +bitops-grb.h: 6325 +bitops.h: 3153 +bitops-llsc.h: 2819 +bitops_mm.h: 11048 +bitops_no.h: 8097 +bitops-op32.h: 3832 +bitops.S: 2667 +bitrev.c: 2157 +bitrev.h: 270 +bits.h: 2634 +bitsperlong.h: 37 +bit_spinlock.h: 2210 +bitstream.bin.ihex: 33395 +bitstream.HEX: 192281 +bkm_a4t.c: 9149 +bkm_a8.c: 11765 +bkm_ax.h: 4575 +blackfin: 4096 +blackfin.c: 7552 +blackfin.h: 1089 +blackfin_sram.h: 1207 +blacklist.c: 8658 +blacklist.h: 108 +blackstamp.c: 9838 +BlackStamp_defconfig: 27434 +blinken.h: 617 +blizzard.c: 41338 +blizzard.h: 249 +blk-barrier.c: 9923 +blkcipher.c: 19013 +blk-core.c: 65533 +blkdev.h: 38233 +blk-exec.c: 2683 +blk.h: 4565 +blkif.h: 3398 +blk-integrity.c: 10137 +blk-ioc.c: 4083 +blk-map.c: 8314 +blk-merge.c: 9996 +blkpg.h: 1569 +blk-settings.c: 21842 +blk-softirq.c: 4192 +blk-sysfs.c: 12022 +blk-tag.c: 10090 +blk-timeout.c: 5850 +blktrace_api.h: 7347 +blktrace.c: 40749 +blktrans.h: 1935 +bloat-o-meter: 1711 +block: 4096 +block2mtd.c: 10757 +block.c: 15974 +blockcheck.c: 16817 +blockcheck.h: 3928 +blockdev: 4096 +block_dev.c: 37737 +blockgroup_lock.h: 1164 +block.h: 12870 +blockops.S: 2573 +block_validity.c: 6187 +blowfish.c: 17890 +bluecard_cs.c: 21854 +bluetooth: 4096 +bluetooth.h: 4823 +bmac.c: 42545 +bmac.h: 8220 +bmap.c: 17082 +bmap.h: 8896 +bmap_union.h: 1274 +bnep: 4096 +bnep.h: 4313 +bnode.c: 15448 +bnx2: 4096 +bnx2.c: 204472 +bnx2_fw.h: 2909 +bnx2.h: 328128 +bnx2i: 4096 +bnx2i.h: 23900 +bnx2i_hwi.c: 73780 +bnx2i_init.c: 11868 +bnx2i_iscsi.c: 56395 +bnx2i_sysfs.c: 3632 +bnx2-mips-06-4.6.16.fw.ihex: 255140 +bnx2-mips-09-4.6.17.fw.ihex: 255536 +bnx2-rv2p-06-4.6.16.fw.ihex: 19256 +bnx2-rv2p-09-4.6.15.fw.ihex: 21444 +bnx2x_dump.h: 28960 +bnx2x-e1-4.8.53.0.fw.ihex: 455912 +bnx2x-e1h-4.8.53.0.fw.ihex: 529144 +bnx2x_fw_defs.h: 15968 +bnx2x_fw_file_hdr.h: 1226 +bnx2x.h: 36495 +bnx2x_hsi.h: 87970 +bnx2x_init.h: 12172 +bnx2x_init_ops.h: 12435 +bnx2x_link.c: 162411 +bnx2x_link.h: 6119 +bnx2x_main.c: 321334 +bnx2x_reg.h: 308654 +board-1arm.c: 2699 +board-2430sdp.c: 5365 +board-3430sdp.c: 12788 +board-4430sdp.c: 2343 +board-a9m9750dev.c: 3624 +board-a9m9750dev.h: 478 +board-acs5k.c: 5495 +board-afeb-9260v1.c: 5234 +board-ams-delta.c: 6109 +board-ams-delta.h: 3023 +board-ap325rxa.c: 13583 +board-apollon.c: 8566 +board-armadillo5x0.h: 564 +board.c: 3934 +board-cam60.c: 4681 +board-cap9adk.c: 9718 +board-carmeva.c: 4435 +board-csb337.c: 6265 +board-csb637.c: 3642 +board-dk.c: 5862 +board-dm355-evm.c: 7541 +board-dm355-leopard.c: 7584 +board-dm644x-evm.c: 17303 +board-dm646x-evm.c: 5912 +board-dsm320.c: 2919 +board-eb01.c: 1385 +board-eb9200.c: 3461 +board-eb.h: 3843 +board-ecbat91.c: 4404 +board-edosk7760.c: 4611 +board-ek.c: 5054 +boardergo.c: 16200 +boardergo.h: 4069 +board-espt.c: 2426 +board-fsample.c: 8474 +board-generic.c: 1918 +board.h: 3611 +board-h2.c: 10497 +board-h2.h: 1585 +board-h2-mmc.c: 1862 +board-h3.c: 9698 +board-h3.h: 1550 +board-h3-mmc.c: 1668 +board-h4.c: 9524 +board-halibut.c: 2112 +board-innovator.c: 10872 +board-jscc9p9360.c: 457 +board-jscc9p9360.h: 390 +board-kafa.c: 2778 +board-kb9202.c: 3738 +board-ldp.c: 9161 +board-magicpanelr2.c: 11382 +board-micrel.c: 1450 +board-mx21ads.h: 1998 +board-mx27ads.h: 10858 +board-mx27lite.h: 544 +board-mx27pdk.h: 541 +board-mx31ads.h: 3850 +board-mx31lilly.h: 1430 +board-mx31lite.h: 508 +board-mx31moboard.h: 1408 +board-mx31pdk.h: 2120 +board-mx35pdk.h: 1062 +board-neocore926.c: 9196 +board-nokia770.c: 9780 +board-omap3beagle.c: 10647 +board-omap3evm.c: 7649 +board-omap3pandora.c: 10350 +board-osk.c: 15556 +board-overo.c: 11768 +board-palmte.c: 9495 +board-palmtt.c: 7148 +board-palmz71.c: 8139 +board-pb1176.h: 3534 +board-pb11mp.h: 3933 +board-pba8.h: 3279 +board-pbx.h: 4735 +board-pcm037.h: 1039 +board-pcm038.h: 1428 +board-pcm043.h: 1039 +board-perseus2.c: 7106 +board-picotux200.c: 4544 +board-polaris.c: 3273 +board-qil-a9260.c: 6417 +board-qong.h: 590 +board-rut1xx.c: 2111 +board-rx51.c: 2237 +board-rx51-peripherals.c: 9630 +boards: 4096 +board-sam9260ek.c: 8166 +board-sam9261ek.c: 14425 +board-sam9263ek.c: 10154 +board-sam9g20ek.c: 7036 +board-sam9-l9260.c: 5065 +board-sam9rlek.c: 5294 +boards.c: 9634 +board-se7619.c: 368 +board_setup.c: 991 +board-sffsdr.c: 5298 +boards.h: 874 +board-sh7785lcr.c: 8051 +board-shmin.c: 715 +board-sx1.c: 10319 +board-sx1.h: 1472 +board-sx1-mmc.c: 1614 +board.txt: 1400 +board-urquell.c: 4834 +board-usb-a9260.c: 5382 +board-usb-a9263.c: 5692 +board-voiceblue.c: 6718 +board-voiceblue.h: 552 +board-yl-9200.c: 19259 +board-zoom2.c: 2568 +board-zoom-debugboard.c: 3833 +bond_3ad.c: 81880 +bond_3ad.h: 9440 +bond_alb.c: 45790 +bond_alb.h: 4802 +bonding: 4096 +bonding.h: 10602 +bonding.txt: 98243 +bond_ipv6.c: 5432 +bond_main.c: 137243 +bond_sysfs.c: 42050 +bonito64.h: 16247 +bonito-irq.c: 2465 +booke.c: 16034 +booke_emulate.c: 6991 +booke.h: 2429 +booke_interrupts.S: 11644 +booke_wdt.c: 4745 +boot: 4096 +boot2.H16: 14566 +boot.c: 8143 +bootcode.bin.ihex: 604 +boot-elf: 4096 +bootflag.c: 1698 +bootgraph.pl: 5753 +boot.h: 1195 +boot.H16: 14980 +boot_head.S: 4023 +bootinfo.h: 3250 +Booting: 4704 +booting.txt: 5755 +booting-without-of.txt: 61721 +boot.ld: 812 +boot.lds.S: 927 +bootloader.c: 3823 +bootloader.lds: 501 +bootlogo.h: 236895 +bootlogo.pl: 165 +bootmem.c: 19242 +bootmem.h: 4841 +boot-options.txt: 12803 +bootp: 4096 +bootparam.h: 1530 +bootp.c: 5689 +bootp.lds: 695 +bootpz.c: 13415 +boot-redboot: 4096 +Boot.S: 2820 +bootstd.h: 4709 +bootstr_32.c: 1207 +bootstr_64.c: 1055 +bootstrap.asm: 2924 +bootstrap.bin.ihex: 1080 +bootstrap.S: 4829 +boot.txt: 35058 +bootwrapper.txt: 7768 +bootx.h: 5211 +bootx_init.c: 16762 +bottom_half.h: 224 +bounce.c: 6616 +bounds.c: 526 +bpa10x.c: 10967 +bpck6.c: 6457 +bpck.c: 9505 +bpqether.c: 14923 +bpqether.h: 952 +bq24022.c: 4006 +bq24022.h: 728 +bq27x00_battery.c: 8343 +br2684.c: 20774 +braille: 4096 +braille_console.c: 8194 +braille-console.txt: 1458 +branch.c: 5609 +branches: 4096 +branch.h: 794 +br.c: 2297 +brcmphy.h: 277 +brd.c: 13994 +br_device.c: 4305 +break.h: 1512 +break.S: 20777 +brec.c: 13153 +br_fdb.c: 10129 +br_forward.c: 3296 +brg.txt: 450 +bridge: 4096 +bridge.h: 29862 +bridge-regs.h: 1121 +bridge.txt: 382 +br_if.c: 9454 +br_input.c: 4146 +br_ioctl.c: 9353 +briq_panel.c: 5383 +brl_emu.c: 5592 +br_netfilter.c: 28764 +br_netlink.c: 4931 +br_notify.c: 2202 +broadcom.c: 17870 +broadsheetfb.c: 13698 +broadsheetfb.h: 1727 +br_private.h: 7906 +br_private_stp.h: 1654 +br_stp_bpdu.c: 5251 +br_stp.c: 11134 +br_stp_if.c: 7340 +br_stp_timer.c: 4651 +br_sysfs_br.c: 12447 +br_sysfs_if.c: 6540 +Brutus: 1927 +bsbe1.h: 3346 +bsd_comp.c: 29587 +bsg.c: 23964 +bsg.h: 3096 +bsr.c: 8971 +bsru6.h: 3855 +bssdb.c: 59681 +bssdb.h: 9978 +bt3c_cs.c: 16786 +bt431.h: 5854 +bt455.h: 2096 +bt819.c: 14549 +bt819.h: 1082 +bt848.h: 11788 +bt856.c: 7085 +bt866.c: 6222 +bt878.c: 16114 +bt878.h: 4113 +bt87x.c: 30530 +Bt87x.txt: 2597 +bt8xx: 4096 +bt8xxgpio.c: 8476 +bt8xxgpio.txt: 4402 +bt8xx.txt: 3940 +btaudio: 3104 +btcx-risc.c: 6470 +btcx-risc.h: 863 +bte.c: 12913 +bte_error.c: 7665 +bte.h: 7765 +btext.c: 38463 +btext.h: 858 +btfixup.c: 10268 +btfixup.h: 7304 +btfixupprep.c: 11589 +btnode.c: 8474 +btnode.h: 2067 +btree.c: 8032 +btree.h: 5488 +btrfs: 4096 +btrfs_inode.h: 4339 +btrfs.txt: 2918 +btsdio.c: 8446 +bttv: 4096 +bttv-audio-hook.c: 9617 +bttv-audio-hook.h: 1126 +bttv-cards.c: 151213 +bttv-driver.c: 121604 +bttv-gpio.c: 4858 +bttv.h: 14877 +bttv-i2c.c: 10677 +bttv-if.c: 2894 +bttv-input.c: 10597 +bttvp.h: 14108 +bttv-risc.c: 25965 +bttv-vbi.c: 12835 +btuart_cs.c: 15857 +btusb.c: 24625 +buddha.c: 5673 +budget-av.c: 45832 +budget.c: 23026 +budget-ci.c: 46442 +budget-core.c: 17319 +budget.h: 3030 +budget-patch.c: 20598 +buffer.c: 3308 +buffer-format.txt: 4606 +buffer_head.h: 11463 +buffer_head_io.c: 10961 +buffer_head_io.h: 2416 +buffer_icap.c: 10726 +buffer_icap.h: 2297 +buffer_sync.c: 13744 +buffer_sync.h: 432 +bug.c: 423 +bugfix.S: 14062 +bug.h: 400 +BUG-HUNTING: 8326 +BUGS: 235 +bugs_64.c: 778 +bugs.c: 1893 +bugs.h: 451 +BUGS-parport: 319 +build.c: 39439 +builddeb: 5872 +buildtar: 2659 +builtin-annotate.c: 29512 +builtin.h: 1035 +builtin-help.c: 11520 +builtin-list.c: 408 +builtin-record.c: 14786 +builtin-report.c: 35243 +builtin-stat.c: 13788 +builtin-top.c: 17061 +bunzip2.h: 258 +burgundy.c: 25045 +burgundy.h: 4105 +bus.c: 8958 +busctl-regs.h: 2071 +bus.h: 950 +BusLogic.c: 151498 +BusLogic.h: 40976 +BusLogic.txt: 26440 +bus-osm.c: 4125 +busses: 4096 +bust_spinlocks.c: 636 +bus.txt: 4536 +bus_watcher.c: 7864 +butterfly: 2990 +button.c: 12060 +buttons.c: 1516 +bvme6000: 4096 +bvme6000_defconfig: 24611 +bvme6000hw.h: 3490 +bvme6000_scsi.c: 3343 +bw2.c: 9440 +bw-qcam.c: 25715 +bw-qcam.h: 2049 +byteorder: 4096 +byteorder.h: 277 +bzero.S: 3581 +c101.c: 11218 +c16e9e8bb74f14f4504305957e4346e7fc46ea: 296 +c2_ae.c: 9166 +c2_ae.h: 3338 +c2_alloc.c: 4106 +c2.c: 33727 +c2_cm.c: 9984 +c2_cq.c: 10526 +c2.h: 13957 +c2_intr.c: 5630 +c2k.c: 3705 +c2k_defconfig: 48649 +c2k.dts: 8777 +c2_mm.c: 8862 +c2_mq.c: 4622 +c2_mq.h: 3238 +c2p_core.h: 2688 +c2_pd.c: 3012 +c2p.h: 631 +c2p_iplan2.c: 3576 +c2port: 4096 +c2port-duramar2150.c: 3241 +c2port.h: 1788 +c2port.txt: 2848 +c2p_planar.c: 3697 +c2_provider.c: 21747 +c2_provider.h: 4101 +c2_qp.c: 25022 +c2_rnic.c: 16782 +c2_status.h: 5103 +c2_user.h: 2415 +c2_vq.c: 7741 +c2_vq.h: 2530 +c2_wr.h: 35475 +c3000_defconfig: 37418 +c4.c: 33871 +c67x00: 4096 +c67x00-drv.c: 6069 +c67x00.h: 9392 +c67x00-hcd.c: 10012 +c67x00-hcd.h: 4298 +c67x00-ll-hpi.c: 12221 +c67x00-sched.c: 30459 +c6xdigio.c: 13668 +ca0106: 4096 +ca0106.h: 37992 +ca0106_main.c: 59396 +ca0106_mixer.c: 27767 +ca0106_proc.c: 14457 +cacheasm.h: 3274 +cache.c: 10301 +cache-c.c: 733 +cachectl.h: 752 +cache-debugfs.c: 3861 +cache-fa.S: 5726 +cachefeatures.txt: 1538 +cache-feroceon-l2.c: 8394 +cache-feroceon-l2.h: 358 +cachefiles: 4096 +cachefiles.txt: 17132 +cacheflush_32.h: 3544 +cacheflush_64.h: 2543 +cacheflush.h: 7154 +cacheflush_mm.h: 4194 +cache-flush-mn10300.S: 5528 +cacheflush_no.h: 2672 +cacheflush.S: 1897 +cache.h: 4660 +cacheinfo.c: 20221 +cacheinfo.h: 240 +cacheinit.c: 1960 +cache-l2x0.c: 3064 +cache-l2x0.h: 1931 +cache-lock.txt: 1222 +cache-mn10300.S: 6477 +cacheops.h: 2183 +cache-page.c: 1964 +cache.S: 2858 +cache-sh2a.c: 3241 +cache-sh2.c: 2044 +cache-sh3.c: 2486 +cache-sh4.c: 20825 +cache-sh5.c: 27270 +cache-sh7705.c: 5050 +cachetlb.txt: 16265 +cachetype.h: 1643 +cache-v3.S: 3174 +cache-v4.S: 3364 +cache-v4wb.S: 5731 +cache-v4wt.S: 4411 +cache-v6.S: 6450 +cache-v7.S: 7015 +cache-xsc3l2.c: 5806 +caching: 4096 +cafe_ccic: 2424 +cafe_ccic.c: 53700 +cafe_ccic-regs.h: 6845 +cafe_nand.c: 25500 +cagg.c: 110445 +cagg.h: 15067 +ca.h: 3022 +caiaq: 4096 +caleb.c: 3138 +caleb.h: 636 +calgary.h: 2452 +calib.c: 28905 +calib.h: 3835 +calibrate.c: 5121 +callback.c: 9965 +callback.h: 2994 +callback_proc.c: 6012 +callbacks.c: 7878 +callbacks.h: 1495 +callback_srm.S: 2840 +callbacks.txt: 4860 +callback_xdr.c: 18050 +callc.c: 48919 +callchain.c: 3746 +callchain.h: 711 +call_hpt.h: 3078 +calling.h: 5596 +call_o32.S: 2534 +call_pci.h: 7934 +call_sm.h: 1270 +calls.S: 10619 +cam60_defconfig: 28038 +camellia.c: 35950 +camera.h: 1504 +cam.h: 4590 +ca_midi.c: 8689 +ca_midi.h: 2024 +can: 4096 +can.h: 3326 +can.txt: 35254 +canyonlands_defconfig: 25711 +canyonlands.dts: 14369 +capability.c: 8203 +capability.h: 17864 +capability.txt: 618 +capcella_defconfig: 18424 +capcella.h: 1486 +capi: 4096 +capi20.h: 29357 +capi.c: 33038 +capicmd.h: 4663 +capidrv.c: 64650 +capidrv.h: 4862 +capidtmf.c: 26932 +capidtmf.h: 3726 +capifs.c: 5266 +capifs.h: 360 +capifunc.c: 31377 +capifunc.h: 903 +capi.h: 10360 +capilib.c: 4606 +capilli.h: 3567 +capimain.c: 3336 +capiutil.c: 30023 +capiutil.h: 14649 +capmode.c: 8041 +caps.c: 5160 +capture.c: 9562 +capture.h: 702 +card: 4096 +cardbus.c: 6323 +card.c: 10228 +card.h: 4366 +CARDLIST.au0828: 527 +CARDLIST.bttv: 9061 +CARDLIST.cx23885: 1693 +CARDLIST.cx88: 5876 +CARDLIST.em28xx: 4880 +CARDLIST.ivtv: 1163 +CARDLIST.saa7134: 9829 +CARDLIST.tuner: 2995 +CARDLIST.usbvision: 4940 +Cards: 26708 +cards.txt: 4752 +cardtype.h: 39894 +carmel.h: 1969 +carmeva_defconfig: 13180 +carminefb.c: 22690 +carminefb.h: 2251 +carminefb_regs.h: 6940 +carta_random.S: 1032 +casio-e55: 4096 +cassini.bin.ihex: 6246 +cassini.c: 145494 +cassini.h: 125724 +cast5.c: 34939 +cast6.c: 22021 +catalog.c: 10749 +catas.c: 4281 +catc.c: 24085 +cats-hw.c: 2052 +cats-pci.c: 1313 +cavium-octeon: 4096 +cavium-octeon_defconfig: 22786 +cayman_defconfig: 31979 +cb710: 4096 +cb710.h: 6584 +cb710-mmc.c: 22406 +cb710-mmc.h: 3337 +cbaf.c: 20405 +cbc.c: 7621 +cb_das16_cs.c: 25977 +cbe_cpufreq.c: 4980 +cbe_cpufreq.h: 578 +cbe_cpufreq_pervasive.c: 2924 +cbe_cpufreq_pmi.c: 3695 +cbe_powerbutton.c: 3019 +cbe_regs.c: 6692 +cbe_thermal.c: 10724 +cb_pcidas64.c: 122559 +cb_pcidas.c: 54058 +cb_pcidda.c: 24298 +cb_pcidio.c: 9309 +cb_pcimdas.c: 14161 +cb_pcimdda.c: 15282 +cchips: 4096 +ccid2.c: 21699 +ccid2.h: 2480 +ccid3.c: 29348 +ccid3.h: 6401 +ccid.c: 5450 +ccid.h: 7568 +ccids: 4096 +ccio-dma.c: 48900 +ccio-rm-dma.c: 5203 +cciss.c: 121676 +cciss_cmd.h: 8834 +cciss.h: 7343 +cciss_ioctl.h: 6805 +cciss_scsi.c: 49769 +cciss_scsi.h: 3184 +cciss.txt: 6396 +ccm.c: 22059 +ccmd.c: 47173 +ccwdev.h: 6880 +ccwgroup.c: 16375 +ccwgroup.h: 2479 +cd1400.h: 7059 +cd1865.h: 13309 +cd32.txt: 535 +cda2df87ba4ecc7988be7a45d01645e11c9f4c: 307 +cdb89712.c: 5870 +cdc2.c: 6912 +cdc-acm.c: 43081 +cdc-acm.h: 3737 +cdc_eem.c: 9394 +cdc_ether.c: 17432 +cdc.h: 7100 +cdc_subset.c: 10970 +cdc-wdm.c: 19634 +cdefBF512.h: 1386 +cdefBF514.h: 5819 +cdefBF516.h: 16666 +cdefBF518.h: 16668 +cdefBF51x_base.h: 71524 +cdefBF522.h: 1386 +cdefBF525.h: 26762 +cdefBF527.h: 37609 +cdefBF52x_base.h: 71524 +cdefBF532.h: 48301 +cdefBF534.h: 124785 +cdefBF537.h: 13187 +cdefBF538.h: 148152 +cdefBF539.h: 16826 +cdefBF542.h: 35078 +cdefBF544.h: 59758 +cdefBF547.h: 48769 +cdefBF548.h: 98262 +cdefBF549.h: 115636 +cdefBF54x_base.h: 169306 +cdefBF561.h: 117485 +cdef_LPBlackfin.h: 20055 +cdev.c: 25135 +cdev.h: 677 +cdk.h: 12770 +cdrom: 4096 +cdrom.c: 99243 +cdrom.h: 36224 +cdrom-standard.tex: 51371 +cdrom.txt: 19223 +cds.txt: 21022 +ce6230.c: 8126 +ce6230.h: 2306 +ceiva.c: 7563 +cell: 4096 +cell.c: 9326 +cell_defconfig: 37867 +celleb_defconfig: 32091 +celleb_pci.c: 12369 +celleb_pci.h: 1402 +celleb_scc_epci.c: 10052 +celleb_scc.h: 7871 +celleb_scc_pciex.c: 15023 +celleb_scc_sio.c: 2600 +celleb_scc_uhc.c: 2518 +celleb_setup.c: 6097 +cell_edac.c: 7394 +cell-pmu.h: 4133 +cell-regs.h: 9211 +centaur.c: 5432 +central.c: 6181 +CERF: 1215 +cerf.c: 3449 +cerfcube_defconfig: 17978 +cerf.h: 810 +cerr-sb1.c: 16742 +cevt-bcm1480.c: 4444 +cevt-ds1287.c: 2833 +cevt-gt641xx.c: 3662 +cevt-r4k.c: 5115 +cevt-r4k.h: 1421 +cevt-sb1250.c: 4380 +cevt-smtc.c: 8920 +cevt-txx9.c: 5694 +cex-gen.S: 1009 +cex-oct.S: 1574 +cex-sb1.S: 4707 +cfag12864b: 3173 +cfag12864b.c: 8350 +cfag12864b-example.c: 5897 +cfag12864bfb.c: 4656 +cfag12864b.h: 2147 +cfbcopyarea.c: 11312 +cfbfillrect.c: 8940 +cfbimgblt.c: 8396 +cfe: 4096 +cfe_api.c: 11219 +cfe_api.h: 3833 +cfe_api_int.h: 4031 +cfe.c: 8423 +cfe_console.c: 1737 +cfe_error.h: 2197 +cfg80211.c: 10563 +cfg80211.h: 1079 +cfg.c: 35379 +cfg.h: 155 +cfi_cmdset_0001.c: 73671 +cfi_cmdset_0002.c: 53117 +cfi_cmdset_0020.c: 38615 +cfi_endian.h: 1238 +cfi_flagadm.c: 3947 +cfi.h: 13714 +cfi_probe.c: 11670 +cfi_util.c: 5934 +cfm.c: 16482 +cfq-iosched.c: 65456 +cfunc.c: 33674 +cfunc.h: 23021 +cg14.c: 15044 +cg3.c: 11707 +cg6.c: 22284 +cgroup.c: 95997 +cgroup_debug.c: 2057 +cgroup_freezer.c: 9146 +cgroup.h: 15604 +cgroups: 4096 +cgroupstats.h: 2155 +cgroupstats.txt: 1307 +cgroups.txt: 21831 +cgroup_subsys.h: 697 +ch341.c: 15479 +ch9.h: 24667 +chafsr.h: 9671 +chainiv.c: 8763 +changebit.S: 617 +ChangeLog: 18049 +CHANGELOG: 18049 +ChangeLog.1992-1997: 59954 +ChangeLog.arcmsr: 6754 +ChangeLog.history: 25741 +ChangeLog.ide-cd.1994-2004: 15586 +ChangeLog.ide-floppy.1996-2002: 4068 +ChangeLog.ide-tape.1995-2002: 16249 +ChangeLog.ips: 5304 +ChangeLog.lpfc: 89671 +ChangeLog.megaraid: 23975 +ChangeLog.megaraid_sas: 12624 +ChangeLog.ncr53c8xx: 22786 +ChangeLog.sym53c8xx: 29464 +ChangeLog.sym53c8xx_2: 6011 +Changes: 4725 +CHANGES: 4725 +chan_kern.c: 13142 +chan_kern.h: 1587 +chan_user.c: 7101 +chan_user.h: 1710 +char: 4096 +char_dev.c: 13712 +chb.c: 5975 +ch.c: 24601 +check-all.sh: 434 +check.c: 3835 +check-gas: 277 +check-gas-asm.S: 37 +check.h: 551 +checkincludes.pl: 529 +checkkconfigsymbols.sh: 1851 +checklist.c: 8211 +checklist.txt: 14315 +check-lxdialog.sh: 1653 +check-model.c: 47 +checkpatch.pl: 70566 +checkpoint.c: 21921 +checks.c: 15663 +check-segrel.lds: 203 +check-segrel.S: 45 +check-serialize.S: 41 +check.sh: 214 +check_signature.c: 599 +checkstack.pl: 5332 +checksum_32.h: 4895 +checksum_32.S: 4739 +checksum_64.h: 5349 +checksum_64.S: 6192 +checksum.c: 4610 +checksumcopy.S: 2455 +checksum.h: 6169 +checksum_mm.h: 3391 +checksum_no.h: 3074 +checksum.S: 9073 +checksyscalls.sh: 5661 +check-text-align.S: 69 +checkversion.pl: 1867 +chelsio: 4096 +cherrs.S: 15233 +chio.h: 5287 +chip.c: 15518 +chip.h: 5099 +chipram.c: 3350 +chipreg.c: 2405 +chips: 4096 +chipsfb.c: 12752 +chlist.h: 30 +chmc.c: 20666 +chmctrl.h: 8057 +chp.c: 17406 +chp.h: 1489 +chpid.h: 1040 +chrp: 4096 +chrp32_defconfig: 40160 +chrp.h: 308 +chsc.c: 22534 +chsc.h: 2470 +chsc_sch.c: 19838 +chsc_sch.h: 179 +chunk.c: 8172 +ci13xxx_udc.c: 69484 +ci13xxx_udc.h: 6227 +cia.c: 4343 +cicada.c: 3994 +cic.c: 14355 +cifs: 4096 +cif.S: 1000 +cifsacl.c: 21375 +cifsacl.h: 2405 +cifs_debug.c: 21856 +cifs_debug.h: 2329 +cifs_dfs_ref.c: 9982 +cifsencrypt.c: 12795 +cifsencrypt.h: 1256 +cifsfs.c: 31585 +cifsfs.h: 4854 +cifs_fs_sb.h: 2432 +cifsglob.h: 23265 +cifspdu.h: 81322 +cifsproto.h: 16968 +cifssmb.c: 173618 +cifs_spnego.c: 4357 +cifs_spnego.h: 1628 +cifs.txt: 2406 +cifs_unicode.c: 7190 +cifs_unicode.h: 8878 +cifs_uniupr.h: 12874 +cimax2.c: 11227 +cimax2.h: 1921 +cinergyT2-core.c: 6717 +cinergyT2-fe.c: 8456 +cinergyT2.h: 3001 +cinit.c: 59044 +cio: 4096 +cio.c: 27748 +cio_debug.h: 849 +cio.h: 4879 +cipher.c: 7783 +cipso_ipv4.c: 64343 +cipso_ipv4.h: 7616 +cipso_ipv4.txt: 2252 +circ_buf.h: 1000 +cirrusfb.c: 77607 +cirrusfb.txt: 1934 +cirrus.h: 8939 +cis: 4096 +ciscode.h: 3364 +cisreg.h: 2804 +cistpl.c: 38770 +cistpl.h: 14596 +ci.txt: 6753 +ck804xrom.c: 10948 +class: 4096 +class.c: 12662 +class_to_string.h: 1508 +class.txt: 4758 +claw.c: 115821 +claw.h: 14619 +clcd.c: 5668 +clcd.h: 6601 +cleanfile: 3492 +cleanpatch: 5132 +cleanup.c: 28008 +clearbit.S: 613 +clear_page_64.S: 969 +clear_page.S: 401 +clear_user.S: 2687 +clep7312.c: 1478 +client.c: 45575 +client.h: 7071 +clinkage.h: 27 +clip.c: 24997 +clk.c: 774 +clkdev.c: 3488 +clkdev.h: 122 +clkgen_defs_asm.h: 7393 +clkgen_defs.h: 5421 +clk.h: 4465 +clk_interface.h: 683 +clksupport.h: 844 +clk.txt: 1173 +clnt.c: 42336 +clnt.h: 5095 +clntlock.c: 6865 +clntproc.c: 21263 +clock24xx.c: 22943 +clock24xx.h: 82888 +clock34xx.c: 31225 +clock34xx.h: 84973 +clock-7x01a.c: 4770 +clock.c: 6387 +clockchips.h: 4535 +clock-cpg.c: 5839 +clock-dclk.c: 4423 +clockdomain.c: 16366 +clockdomain.h: 3231 +clockdomains.h: 9108 +clockevents.c: 6244 +clock_getres.S: 1020 +clock_gettime.S: 2948 +clock.h: 1320 +clock_imx21.c: 23302 +clock_imx27.c: 22042 +clock-imx35.c: 13016 +clocking.txt: 1582 +clocks.c: 2153 +clocks.h: 2092 +clock-sh3.c: 2204 +clock-sh4-202.c: 3818 +clock-sh4.c: 1967 +clock-sh5.c: 1848 +clock-sh7201.c: 1982 +clock-sh7203.c: 1936 +clock-sh7206.c: 1931 +clock-sh7343.c: 6574 +clock-sh7366.c: 6500 +clock-sh7619.c: 1741 +clock-sh7705.c: 2140 +clock-sh7706.c: 2055 +clock-sh7709.c: 2302 +clock-sh7710.c: 1874 +clock-sh7712.c: 1592 +clock-sh7722.c: 5683 +clock-sh7723.c: 7223 +clock-sh7724.c: 7654 +clock-sh7763.c: 2503 +clock-sh7770.c: 1749 +clock-sh7780.c: 2630 +clock-sh7785.c: 3792 +clock-sh7786.c: 3252 +clock-shx3.c: 2959 +clocks-init.c: 2524 +clocksource: 4096 +clocksource.c: 16881 +clocksource.h: 11531 +clock.txt: 2443 +clone.c: 1295 +clps7111.h: 5605 +clps711x.c: 13340 +clps711xfb.c: 10751 +cls_api.c: 14078 +cls_basic.c: 6522 +cls_cgroup.c: 6506 +cls_flow.c: 15621 +cls_fw.c: 8499 +cls_route.c: 12482 +cls_rsvp6.c: 768 +cls_rsvp.c: 761 +cls_rsvp.h: 14927 +cls_tcindex.c: 11961 +cls_u32.c: 16562 +cluster: 4096 +cluster.c: 14916 +cluster.h: 3649 +clut_vga16.ppm: 230 +cm109.c: 24186 +cm4000_cs.c: 50839 +cm4000_cs.h: 1822 +cm4040_cs.c: 17240 +cm4040_cs.h: 1435 +cm5200_defconfig: 30374 +cm5200.dts: 5770 +cm9780.h: 1648 +cma.c: 76031 +cmap_xfbdev.txt: 1927 +cm_bf527.c: 24357 +CM-BF527_defconfig: 33449 +cm_bf533.c: 10441 +CM-BF533_defconfig: 17784 +cm_bf537.c: 15825 +CM-BF537E_defconfig: 22519 +CM-BF537U_defconfig: 18739 +cm_bf548.c: 20079 +CM-BF548_defconfig: 31514 +cm_bf561.c: 11463 +CM-BF561_defconfig: 19376 +cmb.h: 2128 +cm.c: 108467 +cmd640.c: 22942 +cmd64x.c: 13588 +cmdblk.h: 1843 +cmd.c: 12040 +cmd.h: 3292 +cmdline.c: 774 +cmdlinepart.c: 9405 +cmdpkt.h: 4387 +cmdresp.c: 16004 +cmf.c: 34004 +cm.h: 3735 +CMI8330: 3229 +cmi8330.c: 22466 +cmipci.c: 104710 +CMIPCI.txt: 9357 +cmmap.c: 75502 +cmm.c: 74564 +cmm_data_2860.c: 34802 +cmm_data_2870.c: 28944 +cmm_data.c: 42 +cmm_info.c: 42 +cmm_sanity.c: 44 +cm_msgs.h: 21469 +cmmsta.c: 182636 +cmm_sync.c: 42 +cmm_wpa.c: 41 +cmode.S: 4744 +cmpdi2.c: 435 +cmp.h: 486 +cmpxchg_32.h: 9438 +cmpxchg_64.h: 4582 +cmpxchg.c: 1500 +cmpxchg-grb.h: 2053 +cmpxchg.h: 3173 +cmpxchg-irq.h: 796 +cmpxchg-llsc.h: 1420 +cmpxchg-local.h: 1369 +cm-regbits-24xx.h: 14321 +cm-regbits-34xx.h: 26454 +cm_sbs.c: 3007 +cmservice.c: 13501 +cmtdef.h: 23113 +cmt.h: 1786 +cmtp: 4096 +cmtp.h: 3099 +cmu.c: 5791 +cm-x255.c: 5295 +cm-x270.c: 7295 +cmx270_nand.c: 6063 +cm-x2xx.c: 11698 +cm_x2xx_defconfig: 48725 +cm-x2xx-pci.c: 5404 +cm-x2xx-pci.h: 460 +cm-x300.c: 11712 +cm_x300_defconfig: 39363 +cn_cifs.h: 1323 +cnic.c: 66079 +cnic_defs.h: 16086 +cnic.h: 7097 +cnic_if.h: 7270 +cnode.c: 4219 +cn_proc.c: 7019 +cn_proc.h: 3206 +cn_queue.c: 6122 +cnt32_to_63.h: 3193 +cn_test.c: 4483 +cnv_float.h: 13001 +coalesced_mmio.c: 3435 +coalesced_mmio.h: 652 +cobalt: 4096 +cobalt_btns.c: 4645 +cobalt_defconfig: 29161 +cobalt.h: 614 +cobalt_lcdfb.c: 7871 +cobra.c: 6747 +c-octeon.c: 7206 +coda: 4096 +coda_cache.h: 673 +coda_fs_i.h: 1700 +coda.h: 17708 +coda_int.h: 434 +coda_linux.c: 5125 +coda_linux.h: 2883 +coda_psdev.h: 3200 +coda.txt: 49725 +code16gcc.h: 388 +codecs: 12288 +codec.txt: 5826 +code-patching.c: 12715 +code-patching.h: 1744 +CodingStyle: 29820 +coff.h: 12413 +coh901327_wdt.c: 14160 +coid.c: 75657 +coldfire: 4096 +coldfire.h: 1492 +colibri.h: 1059 +colibri-pxa270.c: 3375 +colibri_pxa270_defconfig: 42182 +colibri-pxa300.c: 4795 +colibri_pxa300_defconfig: 27217 +colibri-pxa320.c: 4735 +colibri-pxa3xx.c: 3817 +collate.c: 3675 +collate.h: 1705 +collie.c: 7329 +collie_defconfig: 18902 +collie.h: 3779 +color.c: 4817 +color.h: 1187 +com20020.c: 10296 +com20020_cs.c: 10301 +com20020.h: 3624 +com20020-isa.c: 5185 +com20020-pci.c: 5701 +com90io.c: 11118 +com90xx.c: 18469 +comedi: 4096 +comedi_bond.c: 17048 +comedi_compat32.c: 17423 +comedi_compat32.h: 1861 +comedidev.h: 16882 +comedi_fc.c: 3317 +comedi_fc.h: 2462 +comedi_fops.c: 60764 +comedi_fops.h: 191 +comedi.h: 29999 +comedi_ksyms.c: 2407 +comedilib.h: 7998 +comedi_parport.c: 9181 +comedi_pci.h: 1605 +comedi_test.c: 14760 +command.c: 8449 +command.h: 8829 +command-list.txt: 288 +commands.c: 25775 +commands.h: 11936 +comm.c: 4950 +commctrl.c: 23882 +comminit.c: 13072 +commit.c: 32855 +commit-msg.sample: 894 +common: 4096 +common.c: 25712 +commoncap.c: 27617 +common_defconfig: 11971 +common.h: 12299 +CommonIO: 4651 +common.lds.S: 2212 +common-offsets.h: 1451 +common-pci.c: 12979 +common_perm_to_string.h: 1100 +common-smdk.c: 4474 +common-smdk.h: 451 +commproc.c: 8070 +commproc.h: 25607 +commsup.c: 51665 +CompactFlash: 1735 +compal-laptop.c: 8886 +comparator.h: 5271 +compartmentalisation.txt: 1944 +compat_audit.c: 664 +compat_binfmt_elf.c: 3496 +compat.c: 2196 +compat_exec_domain.c: 741 +compat.h: 369 +compatibility-list.txt: 1345 +compat_ioctl.c: 7581 +compat_ioctl.h: 4449 +compat_linux.c: 21127 +compat_linux.h: 7320 +compatmac.h: 332 +compat_mq.c: 4132 +compat_ptrace.h: 2572 +compat_rt_sigframe.h: 1846 +compat_signal.c: 17351 +compat_signal.h: 57 +compat-signal.h: 2664 +compat_ucontext.h: 552 +compat_wrapper.S: 48644 +compiler-gcc3.h: 823 +compiler-gcc4.h: 1407 +compiler-gcc.h: 3118 +compiler.h: 4524 +compiler-intel.h: 746 +completion.h: 3226 +composite.c: 30121 +composite.h: 14982 +compr.c: 10363 +compress.c: 1839 +compressed: 4096 +compress.h: 974 +compression.c: 18461 +compression.h: 1742 +compr.h: 3025 +compr_lzo.c: 2312 +compr_rtime.c: 2867 +compr_rubin.c: 8932 +compr_zlib.c: 5850 +computone.txt: 17570 +comstats.h: 3120 +con3215.c: 30319 +con3270.c: 15947 +concap.h: 3778 +concat.h: 454 +conditional.c: 11225 +conditional.h: 617 +conex.c: 32880 +conf.c: 11969 +confdata.c: 19322 +config: 2695 +config3270.sh: 2009 +config.c: 24033 +config.c.in: 496 +config_defs_asm.h: 5405 +config_defs.h: 4370 +configfs: 4096 +configfs_example_explicit.c: 12619 +configfs_example_macros.c: 11555 +configfs.h: 8837 +configfs_internal.h: 5080 +configfs.txt: 21464 +config.h: 1142 +config.mk: 7917 +config-osm.c: 2170 +config_roms.c: 4579 +config_roms.h: 588 +configs: 4096 +configs.c: 2818 +configuring.txt: 4139 +cong.c: 12223 +conmakehash.c: 6121 +connect.c: 38 +connection.c: 13263 +connector: 4096 +connector.c: 11327 +connector.h: 4405 +connector.txt: 6503 +conntrack.h: 810 +consistent.c: 3927 +console: 4096 +console_32.c: 2071 +console_64.c: 1575 +console.c: 7199 +console.h: 2080 +consolemap.c: 22885 +consolemap.h: 1029 +console_struct.h: 5109 +console.txt: 5814 +constants.c: 49479 +constants.h: 2939 +const.h: 596 +constraint.h: 2093 +consumer.h: 8894 +consumer.txt: 6869 +container.c: 7095 +container.h: 198 +contec_pci_dio.c: 5763 +context.c: 1678 +context.h: 3703 +context.S: 6412 +contig.c: 7791 +contregs.h: 3351 +CONTRIBUTORS: 495 +contributors.txt: 3035 +control.c: 43620 +control_compat.c: 11584 +controlfb.c: 27775 +controlfb.h: 4696 +control.h: 9928 +ControlNames.txt: 2085 +control_w.h: 1820 +cookie.c: 13149 +coprocessor.h: 5194 +coprocessor.S: 7277 +coproc.h: 362 +cops.c: 29453 +cops_ffdrv.h: 21384 +cops.h: 1400 +cops_ltdrv.h: 9491 +cops.txt: 2768 +copy_32.S: 9822 +copy.c: 2883 +copy_from_user.S: 1986 +COPYING: 18693 +COPYING.LIB: 25265 +copy_in_user.S: 1659 +copy_page_64.S: 2337 +copypage_64.S: 2011 +copypage-fa.c: 2349 +copypage-feroceon.c: 3145 +copy_page_mck.S: 5871 +copy_page.S: 532 +copypage-v3.c: 2110 +copypage-v4mc.c: 3649 +copypage-v4wb.c: 2820 +copypage-v4wt.c: 2403 +copypage-v6.c: 3822 +copypage-xsc3.c: 2840 +copypage-xscale.c: 3881 +copy.S: 1321 +copy_template.S: 5586 +copy_to_user.S: 2016 +copy_user_64.S: 5420 +copyuser_64.S: 9936 +copy_user_memcpy.S: 5245 +copy_user_nocache_64.S: 2468 +copy_user.S: 2573 +core: 4096 +core_apecs.c: 10176 +core_apecs.h: 17281 +coreb.c: 1844 +core.c: 24656 +core-card.c: 15330 +core-cdev.c: 37224 +core_cia.c: 33365 +core_cia.h: 15760 +core-device.c: 32375 +coredump.c: 5613 +core.h: 5921 +core_irongate.c: 10486 +core_irongate.h: 6754 +core-iso.c: 8971 +core_lca.c: 14096 +core_lca.h: 11596 +core_locking.txt: 4081 +core_marvel.c: 25082 +core_marvel.h: 9350 +core_mcpcia.c: 16238 +core_mcpcia.h: 11691 +core_polaris.c: 4523 +core_polaris.h: 2948 +core_priv.h: 1817 +core_t2.c: 16416 +core_t2.h: 20353 +coretemp: 1672 +coretemp.c: 11947 +core_titan.c: 20020 +core_titan.h: 11455 +core-topology.c: 15332 +core-transaction.c: 27218 +core_tsunami.c: 13148 +core_tsunami.h: 8469 +core.txt: 804 +core_wildfire.c: 17607 +core_wildfire.h: 8616 +corgi.c: 9471 +corgi_defconfig: 47365 +corgi.h: 4831 +corgikbd.c: 12406 +corgi_lcd.c: 16845 +corgi_lcd.h: 421 +corgi_pm.c: 7155 +corgi_ssp.c: 7384 +corgi_ts.c: 9648 +cosa.c: 59334 +cosa.h: 4349 +country.h: 4726 +cow.h: 1883 +cow_sys.h: 692 +cow_user.c: 12166 +coyote.h: 949 +coyote-pci.c: 1459 +coyote-setup.c: 3158 +cp1emu.c: 28793 +cp210x.c: 24866 +cp437.uni: 4426 +cp6.c: 1398 +cpc925_edac.c: 30540 +cpc.h: 16904 +cpci_hotplug_core.c: 17267 +cpci_hotplug.h: 3193 +cpci_hotplug_pci.c: 7823 +cpcihp_generic.c: 6519 +cpcihp_zt5550.c: 8619 +cpcihp_zt5550.h: 2730 +cpc_int.h: 2284 +cpcmd.c: 3087 +cpcmd.h: 1259 +cpc-usb: 4096 +cpc-usb_drv.c: 28935 +cpcusb.h: 2856 +cpfile.c: 24964 +cpfile.h: 1680 +cphy.h: 6427 +cpia2: 4096 +cpia2_core.c: 77737 +cpia2dev.h: 1919 +cpia2.h: 13192 +cpia2_overview.txt: 2357 +cpia2_registers.h: 17890 +cpia2_usb.c: 25426 +cpia2_v4l.c: 50779 +cpia.c: 114212 +cpia.h: 11791 +cpia_pp.c: 22139 +cpia_usb.c: 16084 +cp_intc.c: 3984 +cp_intc.h: 2302 +cpl5_cmd.h: 12577 +cplb.h: 4597 +cplbinfo.c: 3920 +cplbinit.c: 3353 +cplbinit.h: 2491 +cplbmgr.c: 9975 +cplb-mpu: 4096 +cplb-nompu: 4096 +cpm: 4096 +cpm1.c: 19027 +cpm1.h: 23000 +cpm2.c: 8657 +cpm2.h: 51335 +cpm2_pic.c: 7028 +cpm2_pic.h: 177 +cpmac.c: 35475 +cpm_common.c: 8715 +cpm.h: 3601 +cpm_qe: 4096 +cpm-serial.c: 5276 +cpm.txt: 2279 +cpm_uart: 4096 +cpm_uart_core.c: 34184 +cpm_uart_cpm1.c: 4062 +cpm_uart_cpm1.h: 630 +cpm_uart_cpm2.c: 4728 +cpm_uart_cpm2.h: 692 +cpm_uart.h: 3846 +cppi_dma.c: 44672 +cppi_dma.h: 3257 +cpqarray.c: 48267 +cpqarray.h: 3023 +cpqarray.txt: 2224 +cpqphp_core.c: 37277 +cpqphp_ctrl.c: 77860 +cpqphp.h: 22122 +cpqphp_nvram.c: 13820 +cpqphp_nvram.h: 1534 +cpqphp_pci.c: 39788 +cpqphp_sysfs.c: 5682 +cprecomp.h: 1072 +cpsmgr.c: 18525 +cpu: 4096 +cpu5wdt.c: 6940 +cpuacct.txt: 1941 +cpu_buffer.c: 11402 +cpu_buffer.h: 2876 +cpu-bugs64.c: 7627 +cpu.c: 5945 +cpucheck.c: 6054 +cpu-common: 4096 +cpudata_32.h: 574 +cpudata_64.h: 1041 +cpudata.h: 184 +cpu_debug.c: 17937 +cpu_debug.h: 3759 +cpu-drivers.txt: 7387 +cpufeature.h: 13827 +cpu-feature-overrides.h: 1176 +cpu-features.h: 7307 +cpu_features.txt: 2681 +cpufreq: 4096 +cpu-freq: 4096 +cpufreq_32.c: 18804 +cpufreq_64.c: 20116 +cpufreq.c: 49742 +cpufreq_conservative.c: 18026 +cpu-freq.h: 2392 +cpufreq.h: 12164 +cpufreq-nforce2.c: 9537 +cpufreq-nforce2.txt: 597 +cpufreq_ondemand.c: 19342 +cpufreq_performance.c: 1553 +cpufreq_powersave.c: 1625 +cpufreq-pxa2xx.c: 14833 +cpufreq-pxa3xx.c: 6493 +cpufreq_spudemand.c: 4449 +cpufreq_stats.c: 9729 +cpufreq-stats.txt: 5021 +cpufreq_userspace.c: 6109 +cpu.h: 1297 +cpu-h7201.c: 1510 +cpu-h7202.c: 5243 +cpu_hotplug.c: 2052 +cpu-hotplug-spec: 1155 +cpu-hotplug.txt: 14935 +cpuid.c: 5549 +cpuid.h: 617 +cpuidle: 4096 +cpuidle.c: 8664 +cpuidle.h: 1058 +cpu_imx27.c: 1739 +cpuinfo.c: 2141 +cpu-info.h: 2924 +cpuinfo.h: 2135 +cpuinfo-pvr-full.c: 2822 +cpuinfo-static.c: 4940 +cpu-irqs.h: 2654 +cpu-load.txt: 3110 +cpumap.c: 10894 +cpumap.h: 320 +cpumask.c: 4643 +cpumask.h: 381 +cpu-multi32.h: 1743 +cpu-omap.c: 4053 +cpu-probe.c: 23180 +cpu-regs.h: 14601 +cpu-sa1100.c: 7866 +cpu-sa1110.c: 9518 +cpuset.c: 72697 +cpuset.h: 4740 +cpusets.txt: 36191 +cpu_setup_44x.S: 1639 +cpu_setup_6xx.S: 11167 +cpu_setup_fsl_booke.S: 1766 +cpu_setup_pa6t.S: 1218 +cpu_setup_ppc970.S: 3704 +cpu-sh2: 4096 +cpu-sh2a: 4096 +cpu-sh3: 4096 +cpu-sh4: 4096 +cpu-sh5: 4096 +cpu-single.h: 1429 +cputable.c: 57765 +cputable.h: 19753 +cputhreads.h: 1572 +cputime.h: 118 +cputopology.txt: 3013 +cputype.h: 840 +cpu_vect.h: 1321 +cp_vers.h: 933 +cpwd.c: 16512 +cq.c: 20469 +c-qcam.c: 19812 +CQcam.txt: 7069 +cq_desc.h: 2507 +cq_enet_desc.h: 6342 +cq_exch_desc.h: 5837 +cq.h: 4130 +c-r3k.c: 8056 +c-r4k.c: 37720 +cramfs: 4096 +cramfs_fs.h: 2930 +cramfs_fs_sb.h: 343 +cramfs.txt: 2599 +crash.c: 9898 +crash_dump_32.c: 2149 +crash_dump_64.c: 1417 +crash_dump.c: 3851 +crash_dump.h: 2002 +cr_bllcd.c: 7402 +crc16.c: 2838 +crc16.h: 622 +crc32.c: 15299 +crc32c.c: 8200 +crc32c.h: 254 +crc32c-intel.c: 4975 +crc32defs.h: 1072 +crc32.h: 880 +crc32hash.c: 654 +crc7.c: 2329 +crc7.h: 272 +crc-ccitt.c: 3052 +crc-ccitt.h: 330 +crc.h: 880 +crc-itu-t.c: 2892 +crc-itu-t.h: 615 +crc-t10dif.c: 2965 +crc-t10dif.h: 140 +cred.c: 14888 +credentials.txt: 20932 +cred.h: 10905 +cred-internals.h: 559 +CREDITS: 603 +crime.c: 2833 +crime.h: 5271 +cris: 4096 +cris_defs_asm.h: 3805 +crisksyms.c: 472 +cris_supp_reg.h: 198 +crisv10.c: 129158 +crisv10.h: 4289 +crm_regs.h: 1700 +cr_pll.c: 4842 +crt0_ram.S: 2152 +crt0_rom.S: 3157 +crt0.S: 1979 +crtsavres.S: 6123 +crunch-bits.S: 8521 +crunch.c: 2001 +crw.c: 4007 +crw.h: 2025 +cryptd.c: 16974 +cryptd.h: 650 +crypto: 4096 +crypto4xx_alg.c: 8383 +crypto4xx_core.c: 34847 +crypto4xx_core.h: 5634 +crypto4xx_reg_def.h: 7646 +crypto4xx_sa.c: 2984 +crypto4xx_sa.h: 5742 +crypto.c: 16089 +crypto_compat.h: 2294 +cryptocop.c: 111134 +cryptocop.h: 7614 +crypto_des.h: 516 +crypto.h: 35141 +cryptohash.h: 264 +cryptoloop.c: 5005 +crypto_null.c: 5051 +crypto_wq.c: 896 +crypto_wq.h: 122 +crypt_s390.h: 10190 +cs4231.c: 6021 +cs4231-regs.h: 8547 +cs4236.c: 22848 +cs4236_lib.c: 35470 +cs423x: 4096 +cs4270.c: 26832 +cs4270.h: 804 +cs4281.c: 66411 +cs4362a.h: 2039 +cs4398.h: 1968 +cs461x.txt: 2184 +cs46xx: 4096 +cs46xx.c: 5301 +cs46xx_dsp_scb_types.h: 28137 +cs46xx_dsp_spos.h: 6198 +cs46xx_dsp_task_types.h: 7293 +cs46xx.h: 73681 +cs46xx_image.h: 155782 +cs46xx_lib.c: 107227 +cs46xx_lib.h: 8586 +cs5345.c: 5839 +cs5345.h: 1210 +cs53l32a.c: 5932 +cs53l32a.h: 1196 +cs5520.c: 4777 +cs5530.c: 8332 +cs5535audio: 4096 +cs5535audio.c: 10538 +cs5535audio.h: 4162 +cs5535audio_olpc.c: 4595 +cs5535audio_pcm.c: 13419 +cs5535audio_pm.c: 4043 +cs5535.c: 6298 +cs5535_gpio.c: 6000 +cs5536.c: 7861 +cs553x_nand.c: 10268 +cs8403.h: 8833 +cs8420.h: 1681 +cs8427.c: 18610 +cs8427.h: 10572 +cs89712.h: 1848 +cs89x0.c: 59868 +cs89x0.h: 16242 +cs89x0.txt: 25508 +csb337_defconfig: 28177 +csb637_defconfig: 29026 +csb701.c: 1321 +csb726.c: 7527 +csb726.h: 658 +cs.c: 21706 +cscanmgr.c: 14014 +cs.h: 6099 +cs_internal.h: 7245 +csr1212.c: 38810 +csr1212.h: 14571 +csr.c: 26430 +csrc-bcm1480.c: 1705 +csrc-ioasic.c: 1796 +csrc-octeon.c: 1473 +csrc-r4k.c: 885 +csrc-sb1250.c: 2176 +csr.h: 2690 +css.c: 26134 +css.h: 4460 +cstate.c: 4904 +cs_types.h: 934 +csum-copy_64.S: 4160 +csum_copy_from_user.S: 439 +csum_copy.S: 7018 +csum_copy_to_user.S: 431 +csumcpfruser.S: 1663 +csum_ipv6_magic.S: 2885 +csumipv6.S: 696 +csum-partial_64.c: 3530 +csum_partial_copy.c: 8909 +csum_partial_copy_generic.S: 1729 +csumpartialcopygeneric.S: 6850 +csumpartialcopy.S: 1151 +csumpartialcopyuser.S: 2378 +csum_partial.S: 16737 +csumpartial.S: 3126 +csum-wrappers_64.c: 3926 +ct20k1reg.h: 20603 +ct20k2reg.h: 3088 +ct82c710.c: 6778 +ctamixer.c: 10033 +ctamixer.h: 2795 +ctatc.c: 42227 +ctatc.h: 5058 +ctcm_dbug.c: 1932 +ctcm_dbug.h: 3316 +ctcm_fsms.c: 75291 +ctcm_fsms.h: 8271 +ctcm_main.c: 45768 +ctcm_main.h: 6938 +ctcm_mpc.c: 59919 +ctcm_mpc.h: 5324 +ctcm_sysfs.c: 5171 +ctdaio.c: 17904 +ctdaio.h: 3291 +cthardware.c: 1688 +cthardware.h: 7286 +cthw20k1.c: 49680 +cthw20k1.h: 598 +cthw20k2.c: 49114 +cthw20k2.h: 598 +ctimap.c: 2516 +ctimap.h: 1167 +ctkip.c: 17399 +ctl_unnumbered.txt: 962 +ctmixer.c: 28786 +ctmixer.h: 1691 +ctpcm.c: 11244 +ctpcm.h: 612 +ctr.c: 11026 +ctree.c: 111552 +ctree.h: 75158 +ctresource.c: 5825 +ctresource.h: 2267 +ctr.h: 524 +ctrlchar.c: 1752 +ctrlchar.h: 484 +cts.c: 10045 +ctsrc.c: 19870 +ctsrc.h: 4527 +cttimer.c: 11342 +cttimer.h: 686 +ctvmem.c: 5666 +ctvmem.h: 1787 +c-tx39.c: 10852 +ctxfi: 4096 +ctxrx.c: 147975 +ctype.c: 1041 +ctype.h: 1399 +cu3088.c: 3577 +cu3088.h: 848 +cuboot-52xx.c: 1660 +cuboot-824x.c: 1224 +cuboot-83xx.c: 1525 +cuboot-85xx.c: 1673 +cuboot-85xx-cpm2.c: 1764 +cuboot-8xx.c: 1149 +cuboot-acadia.c: 4964 +cuboot-amigaone.c: 868 +cuboot-bamboo.c: 689 +cuboot.c: 944 +cuboot-c2k.c: 4884 +cuboot-ebony.c: 782 +cuboot.h: 365 +cuboot-katmai.c: 1294 +cuboot-mpc7448hpc2.c: 1279 +cuboot-pq2.c: 7138 +cuboot-rainier.c: 1453 +cuboot-sam440ep.c: 1254 +cuboot-sequoia.c: 1453 +cuboot-taishan.c: 1361 +cuboot-warp.c: 916 +cuboot-yosemite.c: 1095 +cuda.h: 978 +cumana_1.c: 7960 +cumana_2.c: 14690 +current.h: 677 +cuse.c: 14893 +cvisionppc.h: 1577 +cvmx-address.h: 8499 +cvmx-asm.h: 4526 +cvmx-asxx-defs.h: 14223 +cvmx-bootinfo.h: 9081 +cvmx-bootmem.c: 20524 +cvmx-bootmem.h: 12982 +cvmx-ciu-defs.h: 39090 +cvmx-cmd-queue.c: 9400 +cvmx-cmd-queue.h: 18993 +cvmx-config.h: 6486 +cvmx-dbg-defs.h: 2123 +cvmx-fau.h: 19011 +cvmx-fpa.c: 4975 +cvmx-fpa-defs.h: 11938 +cvmx-fpa.h: 8284 +cvmx-gmxx-defs.h: 79305 +cvmx-gpio-defs.h: 6346 +cvmx.h: 14240 +cvmx-helper-board.c: 21950 +cvmx-helper-board.h: 6656 +cvmx-helper.c: 32770 +cvmx-helper-errata.c: 2592 +cvmx-helper-errata.h: 1277 +cvmx-helper-fpa.c: 7545 +cvmx-helper-fpa.h: 2360 +cvmx-helper.h: 7482 +cvmx-helper-jtag.c: 4203 +cvmx-helper-jtag.h: 1530 +cvmx-helper-loop.c: 2679 +cvmx-helper-loop.h: 1901 +cvmx-helper-npi.c: 3413 +cvmx-helper-npi.h: 1897 +cvmx-helper-rgmii.c: 17448 +cvmx-helper-rgmii.h: 3560 +cvmx-helper-sgmii.c: 17037 +cvmx-helper-sgmii.h: 3417 +cvmx-helper-spi.c: 6088 +cvmx-helper-spi.h: 2785 +cvmx-helper-util.c: 12555 +cvmx-helper-util.h: 6164 +cvmx-helper-xaui.c: 11997 +cvmx-helper-xaui.h: 3409 +cvmx-interrupt-decodes.c: 13959 +cvmx-interrupt-rsl.c: 3787 +cvmx-iob-defs.h: 16589 +cvmx-ipd-defs.h: 27302 +cvmx-ipd.h: 10763 +cvmx-l2c.c: 19669 +cvmx-l2c-defs.h: 23395 +cvmx-l2c.h: 10068 +cvmx-l2d-defs.h: 9721 +cvmx-l2t-defs.h: 3720 +cvmx-led-defs.h: 6731 +cvmx-mdio.h: 13085 +cvmx-mio-defs.h: 54538 +cvmx-npei-defs.h: 61528 +cvmx-npi-defs.h: 46348 +cvmx-packet.h: 1964 +cvmx-pci-defs.h: 40401 +cvmx-pcieep-defs.h: 32743 +cvmx-pciercx-defs.h: 36139 +cvmx-pcsx-defs.h: 11497 +cvmx-pcsxx-defs.h: 9562 +cvmx-pescx-defs.h: 11439 +cvmx-pexp-defs.h: 9365 +cvmx-pip-defs.h: 34993 +cvmx-pip.h: 16579 +cvmx-pko.c: 14987 +cvmx-pko-defs.h: 31966 +cvmx-pko.h: 18946 +cvmx-pow-defs.h: 19069 +cvmx-pow.h: 59817 +cvmx-scratch.h: 3875 +cvmx-smix-defs.h: 5173 +cvmx-spi.c: 22343 +cvmx-spi.h: 9516 +cvmx-spinlock.h: 6516 +cvmx-spxx-defs.h: 9687 +cvmx-srxx-defs.h: 3849 +cvmx-stxx-defs.h: 8491 +cvmx-sysinfo.c: 3570 +cvmx-sysinfo.h: 4893 +cvmx-wqe.h: 11943 +cwc4630.h: 15478 +cwcasync.h: 7969 +cwcbinhack.h: 1566 +cwcdma.asp: 4526 +cwcdma.h: 2174 +cwcsnoop.h: 1513 +cwep.c: 9662 +cwm.c: 3787 +cwm.h: 2421 +cx18: 4096 +cx18-audio.c: 2589 +cx18-audio.h: 905 +cx18-av-audio.c: 14932 +cx18-av-core.c: 41048 +cx18-av-core.h: 13381 +cx18-av-firmware.c: 7225 +cx18-av-vbi.c: 9043 +cx18-cards.c: 16165 +cx18-cards.h: 4838 +cx18-controls.c: 9435 +cx18-controls.h: 1257 +cx18-driver.c: 35409 +cx18-driver.h: 23311 +cx18-dvb.c: 9950 +cx18-dvb.h: 946 +cx18-fileops.c: 21082 +cx18-fileops.h: 1421 +cx18-firmware.c: 14987 +cx18-firmware.h: 1001 +cx18-gpio.c: 9268 +cx18-gpio.h: 1226 +cx18-i2c.c: 8776 +cx18-i2c.h: 1083 +cx18-io.c: 2807 +cx18-ioctl.c: 27533 +cx18-ioctl.h: 1423 +cx18-io.h: 4951 +cx18-irq.c: 2319 +cx18-irq.h: 1417 +cx18-mailbox.c: 21623 +cx18-mailbox.h: 3643 +cx18-queue.c: 6955 +cx18-queue.h: 2294 +cx18-scb.c: 5787 +cx18-scb.h: 7441 +cx18-streams.c: 21499 +cx18-streams.h: 1889 +cx18.txt: 811 +cx18-vbi.c: 7419 +cx18-vbi.h: 1031 +cx18-version.h: 1319 +cx18-video.c: 1080 +cx18-video.h: 875 +cx22700.c: 11029 +cx22700.h: 1488 +cx22702.c: 14516 +cx22702.h: 1673 +cx231xx: 4096 +cx231xx-audio.c: 14952 +cx231xx-avcore.c: 77231 +cx231xx-cards.c: 23257 +cx231xx-conf-reg.h: 25445 +cx231xx-core.c: 30779 +cx231xx-dvb.c: 13339 +cx231xx.h: 22018 +cx231xx-i2c.c: 12912 +cx231xx-input.c: 6423 +cx231xx-pcb-cfg.c: 20991 +cx231xx-pcb-cfg.h: 6456 +cx231xx-reg.h: 67462 +cx231xx-vbi.c: 17757 +cx231xx-vbi.h: 2261 +cx231xx-video.c: 58825 +cx23418.h: 17951 +cx2341x: 4096 +cx2341x.c: 38287 +cx2341x.h: 7383 +cx23885: 4096 +cx23885-417.c: 48981 +cx23885-cards.c: 25645 +cx23885-core.c: 54422 +cx23885-dvb.c: 26635 +cx23885.h: 16143 +cx23885-i2c.c: 9910 +cx23885-reg.h: 12999 +cx23885-vbi.c: 6762 +cx23885-video.c: 40258 +cx24110.c: 20853 +cx24110.h: 1810 +cx24113.c: 14661 +cx24113.h: 1673 +cx24116.c: 40768 +cx24116.h: 1706 +cx24123.c: 30243 +cx24123.h: 1979 +cx25840: 4096 +cx25840-audio.c: 11073 +cx25840-core.c: 45706 +cx25840-core.h: 3605 +cx25840-firmware.c: 3889 +cx25840.h: 3250 +cx25840-vbi.c: 7108 +cx88: 4096 +cx88-alsa.c: 23036 +cx88-blackbird.c: 39031 +cx88-cards.c: 89130 +cx88-core.c: 31343 +cx88-dsp.c: 8787 +cx88-dvb.c: 39095 +cx88.h: 22857 +cx88-i2c.c: 5568 +cx88-input.c: 14002 +cx88-mpeg.c: 24270 +cx88-reg.h: 34334 +cx88-tvaudio.c: 28674 +cx88-vbi.c: 6438 +cx88-video.c: 56637 +cx88-vp3054-i2c.c: 4322 +cx88-vp3054-i2c.h: 1559 +cxacru.c: 37008 +cxacru.txt: 2325 +cxgb2.c: 38481 +cxgb3: 4096 +cxgb3_ctl_defs.h: 5067 +cxgb3_defs.h: 3489 +cxgb3i: 4096 +cxgb3i_ddp.c: 20593 +cxgb3i_ddp.h: 8254 +cxgb3i.h: 4401 +cxgb3i_init.c: 3040 +cxgb3i_iscsi.c: 27545 +cxgb3_ioctl.h: 3847 +cxgb3i_offload.c: 50331 +cxgb3i_offload.h: 7277 +cxgb3i_pdu.c: 12368 +cxgb3i_pdu.h: 1710 +cxgb3i.txt: 3295 +cxgb3_main.c: 84313 +cxgb3_offload.c: 37599 +cxgb3_offload.h: 6272 +cxgb.txt: 13829 +cxio_dbg.c: 5114 +cxio_hal.c: 38094 +cxio_hal.h: 7482 +cxio_resource.c: 9188 +cxio_resource.h: 3116 +cxio_wr.h: 20826 +cxusb.c: 48202 +cxusb.h: 724 +cy82c693.c: 10524 +cyber2000fb.c: 43356 +cyber2000fb.h: 16008 +cyberjack.c: 14547 +cyclades.c: 158213 +cyclades.h: 24974 +cyclomx.h: 2544 +cyclone.c: 3125 +cyclone.h: 403 +cycx_cfm.h: 2926 +cycx_drv.c: 15649 +cycx_drv.h: 2183 +cycx_main.c: 9413 +cycx_x25.c: 45814 +cycx_x25.h: 3727 +cylinder.c: 5848 +cypress_atacb.c: 8391 +cypress_cy7c63.c: 7689 +cypress.h: 2856 +cypress_m8.c: 47071 +cypress_m8.h: 2367 +cyrix.c: 5962 +cytherm.c: 11260 +d101m_ucode.bin.ihex: 1675 +d101s_ucode.bin.ihex: 1675 +d102e_ucode.bin.ihex: 1675 +da9030_battery.c: 16256 +da9034-ts.c: 9057 +da903x_bl.c: 4988 +da903x.c: 13455 +da903x.h: 7048 +dabusb: 4096 +dabusb.c: 22084 +dabusb.h: 1873 +DAC960.c: 265715 +DAC960.h: 151800 +daca.c: 7036 +dac.h: 752 +dadapter.c: 14853 +dadapter.h: 1070 +daemon.c: 16879 +daemon.h: 8435 +daemon_kern.c: 2419 +daemon_user.c: 4368 +daisy.c: 12538 +DAI.txt: 2270 +dapm.txt: 10267 +daqboard2000.c: 25750 +darla20.c: 2889 +darla20_dsp.c: 3479 +darla24.c: 3153 +darla24_dsp.c: 3845 +dart.h: 2235 +dart_iommu.c: 10816 +das08.c: 26325 +das08_cs.c: 14893 +das08.h: 2561 +das16.c: 44853 +das16m1.c: 21006 +das1800.c: 48894 +das6402.c: 8510 +das800.c: 24454 +DASD: 3388 +dasd_3990_erp.c: 68376 +dasd_alias.c: 26580 +dasd.c: 72767 +dasd_devmap.c: 29631 +dasd_diag.c: 17829 +dasd_diag.h: 2628 +dasd_eckd.c: 95322 +dasd_eckd.h: 11295 +dasd_eer.c: 20468 +dasd_erp.c: 4866 +dasd_fba.c: 17801 +dasd_fba.h: 1816 +dasd_genhd.c: 4783 +dasd.h: 11124 +dasd_int.h: 21917 +dasd_ioctl.c: 11160 +dasd_proc.c: 9802 +data.c: 2497 +datafab.c: 20690 +datagram.c: 4449 +data-integrity.txt: 13815 +datalink.h: 482 +datapage.S: 2018 +datarate.c: 12551 +datarate.h: 2494 +datastream.c: 15931 +datastream.h: 514 +dat.c: 11476 +dat.h: 2048 +davicom.c: 4985 +davinci: 4096 +davinci_all_defconfig: 43899 +davinci.c: 13768 +davinci_emac.c: 84968 +davinci-evm.c: 6719 +davinci.h: 3430 +davinci-i2s.c: 17146 +davinci-i2s.h: 495 +davinci_nand.c: 23119 +davinci-pcm.c: 10560 +davinci-pcm.h: 783 +davinci-sffsdr.c: 4374 +davinci_wdt.c: 6690 +db1000_defconfig: 23355 +db1100_defconfig: 23611 +db1200_defconfig: 25180 +db1200.h: 6115 +db1500_defconfig: 30453 +db1550_defconfig: 26655 +db1x00: 4096 +db1x00.h: 5353 +db78x00-bp-setup.c: 2591 +db88f5281-setup.c: 9805 +db88f6281-bp-setup.c: 2227 +db9.c: 21255 +dbdma2.c: 10987 +dbdma.c: 29134 +dbdma.h: 3834 +dbell.c: 1075 +dbell.h: 1308 +dbg.c: 7231 +dbg_current.S: 402 +dbg.h: 144 +dbg_io.c: 5088 +dbg_stackcheck.S: 427 +dbg_stackkill.S: 575 +dbl_float.h: 36770 +dbox2-flash.c: 2719 +dbri.c: 80387 +dbus_contexts: 195 +dc21285.c: 5936 +dc21285-timer.c: 1332 +dc232b: 4096 +dc395x.c: 145696 +dc395x.h: 25842 +dc395x.txt: 3337 +dca: 4096 +dcache.c: 60424 +dcache.h: 2009 +dca-core.c: 6864 +dca.h: 2530 +dca-sysfs.c: 2700 +dcb: 4096 +dcbnl.c: 29597 +dcbnl.h: 11558 +dccp: 4096 +dccp.h: 15873 +dccp.txt: 7484 +dcdbas.c: 16163 +dcdbas.h: 2821 +dcdbas.txt: 3709 +dcookies.c: 6936 +dcookies.h: 1289 +dcore.c: 21748 +dcr.c: 6132 +dcr-generic.h: 1621 +dcr.h: 6308 +dcr-low.S: 983 +dcr-mmio.h: 1838 +dcr-native.h: 4500 +dcr-regs.h: 5140 +dcssblk.c: 27372 +dcu.h: 1481 +dd.c: 9413 +ddp.c: 49018 +ddr2_defs_asm.h: 11790 +ddr2_defs.h: 9835 +ddr.h: 4564 +de2104x.c: 54503 +de4x5.c: 169230 +de4x5.h: 49229 +de4x5.txt: 8677 +de600.c: 13275 +de600.h: 5588 +de620.c: 26654 +de620.h: 4970 +deadline-iosched.c: 11700 +deadline-iosched.txt: 2841 +debug-8250.S: 719 +debug.c: 7221 +debug-cmd.h: 1653 +debug-devices.c: 1975 +debugfs: 4096 +debug_fs.c: 16621 +debugfs.c: 6192 +debugfs.h: 2563 +debugfs_key.c: 9097 +debugfs_key.h: 1348 +debugfs-kmemtrace: 2769 +debugfs_netdev.c: 14895 +debugfs_netdev.h: 739 +debugfs-pktcdvd: 448 +debugfs_sta.c: 7063 +debugfs_sta.h: 427 +debugfs.txt: 7128 +debugging: 1594 +Debugging390.txt: 97243 +debugging-modules.txt: 954 +debugging-via-ohci1394.txt: 7635 +debug.h: 1195 +Debug.h: 1195 +debug_if.h: 3572 +debug-leds.c: 7120 +debug-levels.h: 1482 +debuglib.c: 4523 +debuglib.h: 11740 +debug_locks.c: 1127 +debug_locks.h: 1663 +debug-macro.S: 619 +debugobjects.c: 24352 +debugobjects.h: 2960 +debugobjects.tmpl: 14144 +debug-pagealloc.c: 2607 +debug-pl01x.S: 693 +debugport.c: 12453 +debugreg.h: 2904 +debug.S: 2650 +debug-stub.c: 6089 +debugtraps.S: 1210 +debug.txt: 5755 +dec: 4096 +dec21285.h: 5572 +dec_and_lock.c: 809 +decbin.S: 15728 +declance.c: 35842 +decl.h: 2409 +decnet: 4096 +decnet.txt: 10805 +decodecode: 1702 +decode_exc.c: 11585 +decode_rs.c: 6959 +decompress: 4096 +decompress_bunzip2.c: 23556 +decompress.c: 1126 +decompress_inflate.c: 3544 +decompress_unlzma.c: 15528 +decompress_v10.lds: 342 +decompress_v32.lds: 337 +decstation_defconfig: 17956 +dectypes.h: 427 +default_defconfig: 39014 +defBF512.h: 1271 +defBF514.h: 13406 +defBF516.h: 46402 +defBF518.h: 48358 +defBF51x_base.h: 113540 +defBF522.h: 1271 +defBF525.h: 44639 +defBF527.h: 77635 +defBF52x_base.h: 116393 +defBF532.h: 74150 +defBF534.h: 189790 +defBF537.h: 35002 +defBF539.h: 212777 +defBF542.h: 58060 +defBF544.h: 57371 +defBF547.h: 78333 +defBF548.h: 117603 +defBF549.h: 180941 +defBF54x_base.h: 251535 +defBF561.h: 109277 +defconfig: 20414 +deferred_io.txt: 3031 +defines.h: 5063 +define_trace.h: 1988 +defkeymap.c: 6243 +defkeymap.c_shipped: 11007 +defkeymap.map: 12183 +deflate.c: 5615 +deflate_syms.c: 377 +def_LPBlackfin.h: 29239 +defpalo.conf: 789 +defs.h: 12522 +deftree.c: 40510 +defutil.h: 11891 +defxx.c: 116343 +defxx.h: 54496 +delay_32.h: 882 +delay_64.h: 378 +delay-accounting.txt: 3837 +delayacct.c: 5038 +delayacct.h: 4108 +delay.c: 581 +delayed-ref.c: 24860 +delayed-ref.h: 6619 +delay.h: 1166 +delay_mm.h: 1362 +delay_no.h: 2314 +delay.S: 1279 +delay.txt: 694 +delegation.c: 14100 +delegation.h: 2261 +delkin_cb.c: 4687 +dell-laptop.c: 9519 +dell_rbu.c: 19420 +dell_rbu.txt: 4973 +dell-wmi.c: 6724 +delta.c: 23513 +delta.h: 5823 +demo_main.c: 29367 +demux.h: 8791 +denormal.c: 3335 +dentry.c: 2934 +dentry-locking.txt: 8359 +depca.c: 61475 +depca.h: 6823 +depca.txt: 1245 +desc.c: 19546 +desc_defs.h: 2385 +desc.h: 20526 +des_check_key.c: 4011 +descore-readme.txt: 17200 +description: 73 +des_generic.c: 36210 +des.h: 403 +design_notes.txt: 4626 +design.txt: 17558 +des_s390.c: 17966 +dev-audio.c: 1656 +devboards: 4096 +dev.c: 16990 +devconnect.c: 33409 +devdma.c: 2008 +devdma.h: 271 +development-process: 4096 +dev-fb.c: 1681 +devfs: 459 +dev.h: 9111 +dev-hsmmc1.c: 1647 +dev-hsmmc.c: 1640 +dev-i2c0.c: 1622 +dev-i2c1.c: 1587 +device.c: 3904 +device_cfg.h: 2924 +device_cgroup.c: 12005 +device_cgroup.h: 380 +device-drivers.tmpl: 13872 +device_fsm.c: 34071 +device.h: 31245 +device_handler: 4096 +device_id.c: 8750 +device_id.h: 9158 +device-init.c: 23541 +deviceiobook.tmpl: 11288 +device_main.c: 128828 +device-mapper: 4096 +device-mapper.h: 10956 +device_ops.c: 22502 +device_pgid.c: 16031 +devices: 4096 +devices.c: 19482 +devices.h: 918 +devices-rsk7203.c: 2587 +device_status.c: 12596 +devices.txt: 118144 +devicetable.txt: 1298 +device.txt: 6393 +devinet.c: 40642 +dev-interface: 8905 +devio.c: 45517 +dev-ioctl.c: 18582 +devmap.c: 1464 +dev_mcast.c: 5650 +devops_32.c: 1879 +devops_64.c: 1006 +devpts: 4096 +devpts_fs.h: 1454 +devpts.txt: 5085 +devres.c: 16191 +devres.txt: 7761 +devs.c: 9766 +devs.h: 1960 +dev-sysfs.c: 3852 +dev_table.c: 5563 +dev_table.h: 10908 +devtree.c: 8324 +dev-uart.c: 3521 +dev-usb.c: 1134 +dev-usb-hsotg.c: 992 +dfadd.c: 15801 +dfcmp.c: 5306 +dfdiv.c: 12636 +dfifo.h: 2160 +dfmpy.c: 11736 +dfrem.c: 8997 +dfs.c: 37 +dfs.h: 27 +dfsqrt.c: 5530 +dfsub.c: 15897 +dfu: 4096 +dfu.c: 6025 +dgram.c: 8393 +diag.c: 1739 +diag.h: 1050 +dialog.h: 6696 +dib0070.c: 13441 +dib0070.h: 1691 +dib0700_core.c: 11979 +dib0700_devices.c: 54526 +dib0700.h: 2680 +dib07x0.h: 266 +dib3000.h: 1813 +dib3000mb.c: 23970 +dib3000mb_priv.h: 16232 +dib3000mc.c: 26706 +dib3000mc.h: 2337 +dib7000m.c: 40754 +dib7000m.h: 2102 +dib7000p.c: 40757 +dib7000p.h: 2849 +dibusb-common.c: 12123 +dibusb.h: 3337 +dibusb-mb.c: 14485 +dibusb-mc.c: 5124 +dibx000_common.c: 4156 +dibx000_common.h: 2896 +di.c: 31214 +di_dbg.h: 1102 +diddfunc.c: 2703 +di_defs.h: 8217 +did_vers.h: 933 +diffconfig: 3642 +dig: 4096 +digest.c: 2574 +digi1.h: 3665 +digi_acceleport.c: 58641 +digiepca.txt: 3789 +digiFep1.h: 1928 +digiPCI.h: 1382 +digitv.c: 9329 +digitv.h: 1457 +digsy_mtc.dts: 5933 +di.h: 4386 +dilnetpc.c: 13589 +dino.c: 31503 +dio: 4096 +dio.c: 8573 +dio-driver.c: 3552 +dio.h: 11200 +dio-sysfs.c: 2250 +dir.c: 25683 +direct.c: 6527 +direct.h: 1640 +direct-io.c: 35225 +directory.c: 7736 +directory-locking: 5153 +dirent.h: 177 +dir_f.c: 10085 +dir_f.h: 1267 +dir_fplus.c: 4598 +dir_fplus.h: 1014 +dir.h: 1246 +dirhash.c: 6496 +dir-item.c: 11583 +disable-tsc-ctxt-sw-stress-test.c: 1724 +disable-tsc-on-off-stress-test.c: 1717 +disable-tsc-test.c: 2121 +dis-asm.h: 895 +disassemble.c: 19044 +disassemble.h: 1766 +dis.c: 41703 +discontig.c: 1271 +discover.c: 9895 +discover.h: 2378 +discovery.c: 12785 +discovery.h: 3572 +disk-io.c: 67604 +disk-io.h: 4751 +diskonchip.c: 50636 +disk-shock-protection.txt: 6881 +dispc.c: 37465 +dispc.h: 1183 +display: 4096 +display7seg.c: 6503 +display7seg.h: 1882 +display.c: 1573 +display_gx1.c: 6318 +display_gx1.h: 4598 +display_gx.c: 4945 +display.h: 2117 +display-sysfs.c: 6099 +diu.txt: 470 +div64.c: 3889 +div64-generic.c: 283 +div64.h: 371 +div64.S: 3866 +diva.c: 34488 +divacapi.h: 50994 +diva_didd.c: 3571 +diva_dma.c: 2843 +diva_dma.h: 1993 +diva.h: 1010 +divamnt.c: 5616 +diva_pci.h: 631 +divasfunc.c: 5512 +divasi.c: 12379 +divasmain.c: 21787 +divasproc.c: 10764 +divasync.h: 20126 +divdi3.S: 6280 +divert: 4096 +divert_init.c: 2399 +divert_procfs.c: 8581 +divide.S: 4293 +divsi3.S: 6392 +div_small.S: 1546 +div_Xsig.S: 10096 +dl2k.c: 48901 +dl2k.h: 14949 +dl2k.txt: 9387 +dlci.c: 11723 +DLINK.txt: 7386 +dlm: 4096 +dlmapi.h: 9492 +dlmast.c: 13019 +dlmcommon.h: 29686 +dlmconstants.h: 5013 +dlmconvert.c: 15590 +dlmconvert.h: 1218 +dlmdebug.c: 28761 +dlmdebug.h: 2109 +dlm_device.h: 2536 +dlmdomain.c: 49292 +dlmdomain.h: 1165 +dlmfs.c: 15242 +dlmfs.txt: 4319 +dlmfsver.c: 1211 +dlmfsver.h: 997 +dlmglue.c: 110475 +dlmglue.h: 5587 +dlm.h: 5602 +dlm_internal.h: 16633 +dlmlock.c: 19997 +dlmmaster.c: 96511 +dlm_netlink.h: 1064 +dlm_plock.h: 1135 +dlmrecovery.c: 85132 +dlmthread.c: 21013 +dlmunlock.c: 19250 +dlmver.c: 1203 +dlmver.h: 991 +dm1105: 4096 +dm1105.c: 22399 +dm355.c: 17263 +dm355evm_keys.c: 8928 +dm355evm_msp.c: 10717 +dm355evm_msp.h: 2879 +dm355.h: 586 +dm644x.c: 14946 +dm644x.h: 1316 +dm646x.c: 15438 +dm646x.h: 757 +dm9000.c: 34291 +dm9000.h: 4167 +dm9000.txt: 5137 +dm9601.c: 15941 +dma: 4096 +dma-alloc.c: 4571 +dma-api.c: 9315 +DMA-API.txt: 28886 +DMA-attributes.txt: 1376 +dma-attrs.h: 1758 +dmabounce.c: 14340 +dmabrg.c: 5279 +dmabrg.h: 497 +dmabuf.c: 35686 +dma.c: 6328 +dmac.c: 4805 +dmac.h: 11517 +dma-coherence.h: 1492 +dma-coherent.c: 3667 +dma-coherent.h: 891 +dmacopy.c: 909 +dma-core.h: 639 +dmactl-regs.h: 4663 +dma-debug.c: 31988 +dma-debug.h: 4915 +dma-default.c: 8575 +dma_defs_asm.h: 14594 +dma_defs.h: 14110 +dmaengine.c: 28040 +dmaengine.h: 15831 +dmaengine.txt: 42 +dma-g2.c: 4776 +dma.h: 2547 +dma-iommu.c: 3128 +dma-isa.c: 5163 +DMA-ISA-LPC.txt: 5333 +dma_lib.c: 16254 +dma-m2p.c: 9922 +dma-mapping-broken.h: 2488 +dma-mapping.c: 5434 +dma-mapping-common.h: 5646 +dma-mapping.h: 4368 +DMA-mapping.txt: 27929 +dma_mm.h: 455 +dma-mx1-mx2.c: 23615 +dma-mx1-mx2.h: 2711 +dma_no.h: 16955 +dma-noncoherent.c: 10156 +dma-octeon.c: 10532 +dma-plat.h: 2025 +dmapool.c: 13226 +dmapool.h: 923 +dma-pvr2.c: 2423 +dmar.c: 31385 +dma_remapping.h: 988 +dmar.h: 6143 +dmascc.c: 37724 +dma-sh4a.h: 2469 +dma-sh7760.c: 10216 +dma-sh.c: 7913 +dma-sh.h: 2862 +dmasound: 4096 +dmasound_atari.c: 42606 +dmasound_core.c: 44456 +dmasound.h: 8131 +dmasound_paula.c: 19160 +dmasound_q40.c: 14354 +dma-swiotlb.c: 4748 +dma-sysfs.c: 4348 +dmatest.c: 15129 +dma_timer.c: 2282 +dma.txt: 6352 +DMA.txt: 6352 +dma_v.h: 1177 +dm-bio-record.h: 1629 +dm.c: 60780 +dm-crypt.c: 32243 +dm-crypt.txt: 1485 +dm-delay.c: 8567 +dm-dirty-log.h: 3944 +dme1737: 11748 +dme1737.c: 74868 +dmesg.c: 1657 +dm-exception-store.c: 6745 +dm-exception-store.h: 4659 +dmfe.c: 60351 +dmfe.txt: 2168 +dm.h: 3933 +dmi.h: 411 +dmi-id.c: 6586 +dm-io.c: 11366 +dm-ioctl.c: 33212 +dm-ioctl.h: 9109 +dm-io.h: 2051 +dm-io.txt: 3298 +dmi_scan.c: 15130 +dm-kcopyd.c: 14244 +dm-kcopyd.h: 1335 +dm-linear.c: 3614 +dm-log.c: 19367 +dm-log.txt: 2397 +dm-log-userspace-base.c: 16497 +dm-log-userspace.h: 12944 +dm-log-userspace-transfer.c: 6936 +dm-log-userspace-transfer.h: 452 +dmm32at.c: 30666 +dm-mpath.c: 37626 +dm-mpath.h: 415 +dm-path-selector.c: 2473 +dm-path-selector.h: 2533 +dm-queue-length.c: 5495 +dm-queue-length.txt: 1218 +dm-raid1.c: 32159 +dm-region-hash.c: 18043 +dm-region-hash.h: 3217 +dm-round-robin.c: 4673 +dm-service-time.c: 8360 +dm-service-time.txt: 3243 +dm-snap.c: 33940 +dm-snap-persistent.c: 17550 +dm-snap-transient.c: 3687 +dm-stripe.c: 8013 +dm-sysfs.c: 2204 +dm-table.c: 27836 +dm-target.c: 2600 +dmtimer.c: 22824 +dmtimer.h: 3450 +dm-uevent.c: 5482 +dm-uevent.h: 1678 +dm-uevent.txt: 2650 +dmv182.c: 3833 +dmx3191d.c: 4547 +dmxdev.c: 28366 +dmxdev.h: 2409 +dmx.h: 3848 +dm-zero.c: 1495 +dn_dev.c: 33824 +dn_dev.h: 5493 +dnet.c: 25715 +dnet.h: 7221 +dnfb.c: 8139 +dn_fib.c: 18396 +dn_fib.h: 4894 +dn.h: 4527 +dn_ints.c: 1049 +dn_neigh.c: 15875 +dn_neigh.h: 824 +dn_nsp.h: 6229 +dn_nsp_in.c: 21566 +dn_nsp_out.c: 17942 +dnode.c: 30235 +dnotify: 4096 +dnotify.c: 12385 +dnotify.h: 978 +dnotify.txt: 3565 +dn_route.c: 44768 +dn_route.h: 4165 +dn_rtmsg.c: 3778 +dn_rules.c: 5755 +dns323-setup.c: 10831 +dns_resolve.c: 3678 +dns_resolve.h: 1294 +dn_table.c: 20482 +dn_timer.c: 3167 +do_balan.c: 58466 +doc2000.c: 32664 +doc2000.h: 5486 +doc2001.c: 25107 +doc2001plus.c: 31825 +DocBook: 4096 +docecc.c: 15968 +dock.c: 31358 +docprobe.c: 10340 +docproc.c: 11716 +do_csum.S: 2991 +Documentation: 4096 +do_func.S: 13813 +domain.c: 29471 +domain.h: 2107 +do_mounts.c: 9465 +do_mounts.h: 1396 +do_mounts_initrd.c: 3256 +do_mounts_md.c: 8071 +do_mounts_rd.c: 8166 +donauboe.c: 48207 +donauboe.h: 14213 +dontdiff: 1964 +doorbell.c: 2900 +doorbell.h: 2894 +dot11d.c: 5434 +dot11d.h: 2916 +dot_command.c: 4062 +dot_command.h: 2259 +dot.gdbinit: 5372 +dot.gdbinit_200MHz_16MB: 5763 +dot.gdbinit_300MHz_32MB: 5763 +dot.gdbinit_400MHz_32MB: 5764 +dot.gdbinit.nommu: 3891 +dot.gdbinit.smp: 8938 +dot.gdbinit.vdec2: 5442 +do_timer.h: 349 +double_cpdo.c: 4122 +doublefault_32.c: 1732 +double.h: 6303 +down2.H16: 33610 +down3.bin.ihex: 35892 +down.H16: 36678 +dp_add.c: 4700 +dpc.c: 58689 +dpc.h: 1771 +dp_cmp.c: 1842 +dpcsup.c: 9553 +dp_div.c: 4369 +dp_fint.c: 1932 +dp_flong.c: 1912 +dp_frexp.c: 1450 +dp_fsp.c: 1879 +dp_logb.c: 1446 +dpmc.c: 3024 +dpmc.h: 1247 +dpmc_modes.S: 14539 +dp_modf.c: 2064 +dp_mul.c: 4812 +dp_scalb.c: 1508 +dp_simple.c: 2057 +dp_sqrt.c: 4372 +dp_sub.c: 4977 +dpt: 4096 +dpt_i2o.c: 96500 +dpti.h: 11787 +dpti_i2o.h: 13449 +dpti_ioctl.h: 5365 +dp_tint.c: 3021 +dpti.txt: 3614 +dp_tlong.c: 3061 +dptsig.h: 14986 +dqblk_qtree.h: 2108 +dqblk_v1.h: 342 +dqblk_v2.h: 367 +dqblk_xfs.h: 6607 +dqueue.c: 2180 +dqueue.h: 1007 +dquot.c: 72530 +draft-ietf-cipso-ipsecurity-01.txt: 28638 +dram_init.S: 3913 +draw_functrace.py: 3560 +dreamcast_defconfig: 25856 +driver: 11995 +driver.c: 54722 +driver-changes.txt: 4022 +driver_chipcommon.c: 13262 +driver_chipcommon_pmu.c: 17510 +driver_extif.c: 3829 +driver_gige.c: 7415 +driver.h: 4405 +driver_mipscore.c: 6999 +driver-model: 4096 +driver-model.txt: 10127 +driver-ops.h: 5035 +driver_pcicore.c: 16619 +drivers: 4096 +drivers.c: 22567 +drivers-testing.txt: 2173 +driver.txt: 8049 +drm: 4096 +drm_agpsupport.c: 13149 +drm_auth.c: 5698 +drm_bufs.c: 44350 +drm_cache.c: 2119 +drm_context.c: 11821 +drm_core.h: 1468 +drm_crtc.c: 63999 +drm_crtc.h: 25347 +drm_crtc_helper.c: 29207 +drm_crtc_helper.h: 4951 +drm_debugfs.c: 6275 +drm_dma.c: 4147 +drm_drawable.c: 5166 +drm_drv.c: 16709 +drm_edid.c: 24730 +drm_edid.h: 5722 +drm_fops.c: 14460 +drm_gem.c: 14905 +drm.h: 23018 +drm_hashtab.c: 5440 +drm_hashtab.h: 2589 +drm_info.c: 9606 +drm_ioc32.c: 33632 +drm_ioctl.c: 9402 +drm_irq.c: 17068 +drm_lock.c: 11107 +drm_memory.c: 5012 +drm_memory.h: 1936 +drm_mm.c: 9213 +drm_mm.h: 3301 +drm_mode.h: 6855 +drm_modes.c: 14802 +drm_os_linux.h: 4047 +drm_pci.c: 3839 +drm_pciids.h: 40171 +drmP.h: 49714 +drm_proc.c: 6339 +drm_sarea.h: 2655 +drm_scatter.c: 5431 +drm_sman.c: 8782 +drm_sman.h: 5975 +drm_stub.c: 13017 +drm_sysfs.c: 13561 +drm_vm.c: 18670 +drop_caches.c: 1684 +drop_monitor.c: 8677 +drp-avail.c: 8822 +drp.c: 24684 +drp-ie.c: 9743 +drv.c: 22503 +drvfbi.c: 12647 +drx397xD.c: 30335 +drx397xD_fw.h: 1525 +drx397xD.h: 3015 +ds1286.h: 1223 +ds1287.h: 1019 +ds1302.c: 7604 +ds1305.h: 1068 +ds1603.c: 3162 +ds1603.h: 566 +ds1620.c: 8486 +ds1621: 2670 +ds1621.c: 9932 +ds1682.c: 7160 +ds17287rtc.h: 2676 +ds1_ctrl.fw.ihex: 33804 +ds1_dsp.fw.ihex: 364 +ds1e_ctrl.fw.ihex: 33804 +ds1wm.c: 11691 +ds1wm.h: 114 +ds2482: 743 +ds2482.c: 14041 +ds2490: 3576 +ds2490.c: 24260 +ds2760_battery.c: 13485 +dsa: 4096 +dsa.c: 9418 +dsa.h: 1617 +dsa_priv.h: 4060 +dsbr100.c: 17605 +ds.c: 38706 +dsc.c: 1195 +dscc4.c: 55052 +dsdt-override.txt: 247 +dsemul.c: 4501 +dsfield.c: 19154 +dsfield.h: 1127 +ds.h: 8003 +dsinit.c: 6745 +dsmethod.c: 19169 +dsmg600.h: 1216 +dsmg600-pci.c: 1898 +dsmg600-setup.c: 7030 +dsmthdat.c: 21585 +dsobject.c: 23900 +dsopcode.c: 39305 +dsp56k: 4096 +dsp56k.c: 12404 +dsp56k.h: 1269 +dsp_audio.c: 11056 +dsp_biquad.h: 1622 +dsp_blowfish.c: 23738 +dspbootcode.bin.ihex: 36048 +dsp_cmx.c: 52826 +dsp_common.h: 1309 +dsp_core.c: 33551 +dsp_defs.h: 12149 +dspdids.h: 2695 +dsp_dtmf.c: 7570 +dsp_ecdis.h: 3527 +dsp.h: 7893 +dsp_hwec.c: 3049 +dsp_hwec.h: 242 +dsp_pipeline.c: 8348 +dsp_spos.c: 55617 +dsp_spos.h: 7631 +dsp_spos_scb_lib.c: 49424 +dsp_tones.c: 17264 +dsp_tst.h: 1486 +dsrv4bri.h: 1644 +dsrv_bri.h: 1178 +dsrv_pri.h: 1247 +ds_selftest.c: 9393 +ds_selftest.h: 363 +dst: 4096 +dst.c: 49967 +dst_ca.c: 21634 +dst_ca.h: 1591 +dst_common.h: 4277 +dst.h: 14556 +dst_priv.h: 598 +dstr.c: 5143 +dsutils.c: 25450 +dswexec.c: 19731 +dswload.c: 31066 +dswscope.c: 6750 +dswstate.c: 21428 +dt019x.c: 9062 +dt2801.c: 15251 +dt2811.c: 14680 +dt2814.c: 8589 +dt2815.c: 7337 +dt2817.c: 4517 +dt282x.c: 35248 +dt3000.c: 23494 +dt9812.c: 28480 +dtc: 4096 +dt.c: 16907 +dtc2278.c: 3867 +dtc3x80.txt: 1952 +dtc.c: 13348 +dtc.h: 2644 +dtc-lexer.l: 6979 +dtc-lexer.lex.c_shipped: 57920 +dtc-parser.tab.c_shipped: 55472 +dtc-parser.tab.h_shipped: 3233 +dtc-parser.y: 6540 +dtc-src: 4096 +dtl1_cs.c: 14325 +dtlb_miss.S: 747 +dtlb_prot.S: 1267 +dtl.c: 6493 +dtlk.c: 16644 +dtlk.h: 3768 +dts: 4096 +dts-bindings: 4096 +dtt200u.c: 9848 +dtt200u-fe.c: 5300 +dtt200u.h: 1606 +dtv5100.c: 5845 +dtv5100.h: 1534 +dum.h: 7581 +dummy.c: 3850 +dummycon.c: 1805 +dummy_hcd.c: 50629 +dump_pagetables.c: 8879 +dumprequest.c: 3343 +dumprequest.h: 2117 +dumpstack_32.c: 3323 +dumpstack_64.c: 7276 +dump_stack.c: 290 +dumpstack.c: 8067 +dumpstack.h: 1003 +dump_tlb.c: 2643 +dv1394: 390 +dv1394.c: 74226 +dv1394.h: 10409 +dv1394-private.h: 17471 +dvb: 4096 +dvb-bt8xx.c: 28096 +dvb-bt8xx.h: 1816 +dvb_ca_en50221.c: 45737 +dvb_ca_en50221.h: 4082 +dvb-core: 4096 +dvb_demux.c: 30507 +dvb_demux.h: 3579 +dvbdev.c: 11761 +dvbdev.h: 4065 +dvb_dummy_fe.c: 7049 +dvb_dummy_fe.h: 1698 +dvb_filter.c: 12922 +dvb_filter.h: 6064 +dvb_frontend.c: 54720 +dvb_frontend.h: 11618 +dvb_math.c: 5423 +dvb_math.h: 1974 +dvb_net.c: 42892 +dvb_net.h: 1379 +dvb-pll.c: 17175 +dvb-pll.h: 1617 +dvb_ringbuffer.c: 7188 +dvb_ringbuffer.h: 6340 +dvb-ttusb-budget.c: 44105 +dvb-usb: 12288 +dvb-usb-common.h: 2150 +dvb-usb-dvb.c: 5850 +dvb-usb-firmware.c: 3956 +dvb-usb.h: 12194 +dvb-usb-i2c.c: 1061 +dvb-usb-ids.h: 11042 +dvb-usb-init.c: 8477 +dvb-usb-remote.c: 5519 +dvb-usb-urb.c: 2585 +dvi.c: 18260 +dvi.h: 2461 +dvma.c: 1265 +dvma.h: 9864 +dvo_ch7017.c: 14698 +dvo_ch7xxx.c: 9179 +dvo.h: 4860 +dvo_ivch.c: 10628 +dvo_sil164.c: 7534 +dvo_tfp410.c: 8848 +dw2102.c: 27129 +dw2102.h: 240 +dwarf2.h: 2393 +dw_dmac.c: 37849 +dw_dmac.h: 3078 +dw_dmac_regs.h: 6137 +dynamic_debug.c: 18386 +dynamic_debug.h: 2666 +dynamic-debug-howto.txt: 8633 +dyn.lds.S: 5092 +dz.c: 23133 +dz.h: 5439 +e00154b8e949bf4b89ac198aef9a247532ac2d: 297 +e100: 4096 +e1000: 4096 +e1000_82575.c: 42179 +e1000_82575.h: 8176 +e1000_defines.h: 28796 +e1000e: 4096 +e1000_ethtool.c: 56605 @@ -17,7 +17,12 @@ #include "sys-queue.h" #include "qemu-common.h" -static const QType qdict_type; +static void qdict_destroy_obj(QObject *obj); + +static const QType qdict_type = { + .code = QTYPE_QDICT, + .destroy = qdict_destroy_obj, +}; /** * qdict_new(): Create a new QDict @@ -290,8 +295,3 @@ static void qdict_destroy_obj(QObject *obj) qemu_free(qdict); } - -static const QType qdict_type = { - .code = QTYPE_QDICT, - .destroy = qdict_destroy_obj, -}; @@ -13,7 +13,12 @@ #include "qobject.h" #include "qemu-common.h" -static const QType qint_type; +static void qint_destroy_obj(QObject *obj); + +static const QType qint_type = { + .code = QTYPE_QINT, + .destroy = qint_destroy_obj, +}; /** * qint_from_int(): Create a new QInt from an int64_t @@ -59,8 +64,3 @@ static void qint_destroy_obj(QObject *obj) assert(obj != NULL); qemu_free(qobject_to_qint(obj)); } - -static const QType qint_type = { - .code = QTYPE_QINT, - .destroy = qint_destroy_obj, -}; @@ -13,7 +13,12 @@ #include "qstring.h" #include "qemu-common.h" -static const QType qstring_type; +static void qstring_destroy_obj(QObject *obj); + +static const QType qstring_type = { + .code = QTYPE_QSTRING, + .destroy = qstring_destroy_obj, +}; /** * qstring_from_str(): Create a new QString from a regular C string @@ -66,8 +71,3 @@ static void qstring_destroy_obj(QObject *obj) qemu_free(qs->string); qemu_free(qs); } - -static const QType qstring_type = { - .code = QTYPE_QSTRING, - .destroy = qstring_destroy_obj, -}; diff --git a/roms/pcbios b/roms/pcbios new file mode 160000 +Subproject c658541caaec566c58a8afccc1ed8b56e0e0fbd diff --git a/roms/seabios b/roms/seabios new file mode 160000 +Subproject 5c3f5dde217f382b02350973a38f50941904473 diff --git a/roms/vgabios b/roms/vgabios new file mode 160000 +Subproject 6e62666cfc19e7fd45dd0d7c3ad62fd8d0b5f67 diff --git a/slirp/slirp.c b/slirp/slirp.c index 691420e80..d4a9bacf1 100644 --- a/slirp/slirp.c +++ b/slirp/slirp.c @@ -104,7 +104,7 @@ static void winsock_cleanup(void) #else -struct stat dns_addr_stat; +static struct stat dns_addr_stat; int get_dns_addr(struct in_addr *pdns_addr) { diff --git a/target-i386/ops_sse.h b/target-i386/ops_sse.h index 47a01d40f..709732a4a 100644 --- a/target-i386/ops_sse.h +++ b/target-i386/ops_sse.h @@ -895,7 +895,7 @@ SSE_HELPER_CMP(cmpnlt, FPU_CMPNLT) SSE_HELPER_CMP(cmpnle, FPU_CMPNLE) SSE_HELPER_CMP(cmpord, FPU_CMPORD) -const int comis_eflags[4] = {CC_C, CC_Z, 0, CC_Z | CC_P | CC_C}; +static const int comis_eflags[4] = {CC_C, CC_Z, 0, CC_Z | CC_P | CC_C}; void helper_ucomiss(Reg *d, Reg *s) { diff --git a/tcg/ppc/tcg-target.c b/tcg/ppc/tcg-target.c index 240928899..07395153e 100644 --- a/tcg/ppc/tcg-target.c +++ b/tcg/ppc/tcg-target.c @@ -1253,14 +1253,60 @@ static void tcg_out_op(TCGContext *s, int opc, const TCGArg *args, case INDEX_op_and_i32: if (const_args[2]) { - if ((args[2] & 0xffff) == args[2]) - tcg_out32 (s, ANDI | RS (args[1]) | RA (args[0]) | args[2]); - else if ((args[2] & 0xffff0000) == args[2]) - tcg_out32 (s, ANDIS | RS (args[1]) | RA (args[0]) - | ((args[2] >> 16) & 0xffff)); - else { - tcg_out_movi (s, TCG_TYPE_I32, 0, args[2]); - tcg_out32 (s, AND | SAB (args[1], args[0], 0)); + uint32_t c; + + c = args[2]; + + if (!c) { + tcg_out_movi (s, TCG_TYPE_I32, args[0], 0); + break; + } +#ifdef __PPU__ + uint32_t t, n; + int mb, me; + + n = c ^ -(c & 1); + t = n + (n & -n); + + if ((t & (t - 1)) == 0) { + int lzc, tzc; + + if ((c & 0x80000001) == 0x80000001) { + lzc = clz32 (n); + tzc = ctz32 (n); + + mb = 32 - tzc; + me = lzc - 1; + } + else { + lzc = clz32 (c); + tzc = ctz32 (c); + + mb = lzc; + me = 31 - tzc; + } + + tcg_out32 (s, (RLWINM + | RA (args[0]) + | RS (args[1]) + | SH (0) + | MB (mb) + | ME (me) + ) + ); + } + else +#endif /* !__PPU__ */ + { + if ((c & 0xffff) == c) + tcg_out32 (s, ANDI | RS (args[1]) | RA (args[0]) | c); + else if ((c & 0xffff0000) == c) + tcg_out32 (s, ANDIS | RS (args[1]) | RA (args[0]) + | ((c >> 16) & 0xffff)); + else { + tcg_out_movi (s, TCG_TYPE_I32, 0, c); + tcg_out32 (s, AND | SAB (args[1], args[0], 0)); + } } } else @@ -552,13 +552,12 @@ static const char *usb_class_str(uint8_t class) return p->class_name; } -static void usb_info_device(int bus_num, int addr, int class_id, +static void usb_info_device(Monitor *mon, int bus_num, int addr, int class_id, int vendor_id, int product_id, const char *product_name, int speed) { const char *class_str, *speed_str; - Monitor *mon = cur_mon; switch(speed) { case USB_SPEED_LOW: @@ -595,14 +594,16 @@ static int usb_host_info_device(void *opaque, const char *product_name, int speed) { - usb_info_device(bus_num, addr, class_id, vendor_id, product_id, + Monitor *mon = opaque; + + usb_info_device(mon, bus_num, addr, class_id, vendor_id, product_id, product_name, speed); return 0; } void usb_host_info(Monitor *mon) { - usb_host_scan(NULL, usb_host_info_device); + usb_host_scan(mon, usb_host_info_device); } /* XXX add this */ diff --git a/usb-linux.c b/usb-linux.c index 043f6b6ba..036b39b56 100644 --- a/usb-linux.c +++ b/usb-linux.c @@ -1605,12 +1605,11 @@ static const char *usb_class_str(uint8_t class) return p->class_name; } -static void usb_info_device(int bus_num, int addr, int class_id, +static void usb_info_device(Monitor *mon, int bus_num, int addr, int class_id, int vendor_id, int product_id, const char *product_name, int speed) { - Monitor *mon = cur_mon; const char *class_str, *speed_str; switch(speed) { @@ -1647,7 +1646,9 @@ static int usb_host_info_device(void *opaque, int bus_num, int addr, const char *product_name, int speed) { - usb_info_device(bus_num, addr, class_id, vendor_id, product_id, + Monitor *mon = opaque; + + usb_info_device(mon, bus_num, addr, class_id, vendor_id, product_id, product_name, speed); return 0; } @@ -1672,7 +1673,7 @@ void usb_host_info(Monitor *mon) { struct USBAutoFilter *f; - usb_host_scan(NULL, usb_host_info_device); + usb_host_scan(mon, usb_host_info_device); if (usb_auto_filter) monitor_printf(mon, " Auto filters:\n"); @@ -4588,7 +4588,7 @@ static void select_soundhw (const char *optarg) l = !e ? strlen (p) : (size_t) (e - p); for (c = soundhw; c->name; ++c) { - if (!strncmp (c->name, p, l)) { + if (!strncmp (c->name, p, l) && !c->name[l]) { c->enabled = 1; break; } |