diff options
author | Eric Biederman <ebiederm@xmission.com> | 2004-10-27 08:53:57 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2004-10-27 08:53:57 +0000 |
commit | 6e53f50082cfac4ec2d06d2ff6515781190ad1c0 (patch) | |
tree | c352bf640df56343a303c5e5d04042ae2f90ebc8 /src/include/part | |
parent | 20fc678d65b4cdf6b24bdff45ef04933c538e2e8 (diff) |
sizeram removal/conversion.
- mem.h and sizeram.h and all includes killed because the are no longer needed.
- linuxbios_table.c updated to directly look at the device tree for occupied memory areas.
- first very incomplete stab a converting the ppc code to work with the dynamic device tree
- Ignore resources before we have read them from devices, (if the device is disabled ignore it's resources).
- First stab at Pentium-M support
- add part/init_timer.h making init_timer conditional until there is a better way of handling it.
- Converted all of the x86 sizeram to northbridge set_resources functions.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1722 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/part')
-rw-r--r-- | src/include/part/fallback_boot.h | 2 | ||||
-rw-r--r-- | src/include/part/init_timer.h | 10 | ||||
-rw-r--r-- | src/include/part/sizeram.h | 7 |
3 files changed, 11 insertions, 8 deletions
diff --git a/src/include/part/fallback_boot.h b/src/include/part/fallback_boot.h index 1eb2f7bffc..7d6e790f60 100644 --- a/src/include/part/fallback_boot.h +++ b/src/include/part/fallback_boot.h @@ -3,7 +3,7 @@ #ifndef ASSEMBLY -#if HAVE_FALLBACK_BOOT +#if HAVE_FALLBACK_BOOT == 1 void boot_successful(void); #else #define boot_successful() diff --git a/src/include/part/init_timer.h b/src/include/part/init_timer.h new file mode 100644 index 0000000000..d8b372dc38 --- /dev/null +++ b/src/include/part/init_timer.h @@ -0,0 +1,10 @@ +#ifndef PART_INIT_TIMER_H +#define PART_DELAY_H + +#if HAVE_INIT_TIMER == 1 +void init_timer(void); +#else +#define init_timer() do{} while(0) +#endif + +#endif /* PART_INIT_TIMER_H */ diff --git a/src/include/part/sizeram.h b/src/include/part/sizeram.h deleted file mode 100644 index 50a44f3e82..0000000000 --- a/src/include/part/sizeram.h +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef PART_SIZERAM_H -#define PART_SIZERAM_H - -struct mem_rang; -struct mem_range *sizeram(void); - -#endif /* PART_SIZERAM_H */ |