Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64764
b: refs/heads/master
c: 897ee77
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Sep 10, 2007
1 parent 037c580 commit 74b4fe5
Show file tree
Hide file tree
Showing 81 changed files with 2,618 additions and 3,343 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 43863074659b71345b0047c2cf2ff8d8f7a4b4a1
refs/heads/master: 897ee77bfba12b83752027427a41009961458ee6
6 changes: 5 additions & 1 deletion trunk/arch/i386/boot/pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,11 @@ static void setup_gdt(void)
/* DS: data, read/write, 4 GB, base 0 */
[GDT_ENTRY_BOOT_DS] = GDT_ENTRY(0xc093, 0, 0xfffff),
};
struct gdt_ptr gdt;
/* Xen HVM incorrectly stores a pointer to the gdt_ptr, instead
of the gdt_ptr contents. Thus, make it static so it will
stay in memory, at least long enough that we switch to the
proper kernel GDT. */
static struct gdt_ptr gdt;

gdt.len = sizeof(boot_gdt)-1;
gdt.ptr = (u32)&boot_gdt + (ds() << 4);
Expand Down
20 changes: 20 additions & 0 deletions trunk/arch/m32r/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,13 @@ config PLAT_MAPPI

config PLAT_USRV
bool "uServer"
select PLAT_HAS_INT1ICU

config PLAT_M32700UT
bool "M32700UT"
select PLAT_HAS_INT0ICU
select PLAT_HAS_INT1ICU
select PLAT_HAS_INT2ICU
help
The M3T-M32700UT is an evaluation board based on uT-Engine
specification. This board has an M32700 (Chaos) evaluation chip.
Expand All @@ -68,6 +72,9 @@ config PLAT_M32700UT

config PLAT_OPSPUT
bool "OPSPUT"
select PLAT_HAS_INT0ICU
select PLAT_HAS_INT1ICU
select PLAT_HAS_INT2ICU
help
The OPSPUT is an evaluation board based on uT-Engine
specification. This board has a OPSP-REP chip.
Expand All @@ -89,6 +96,7 @@ config PLAT_MAPPI3

config PLAT_M32104UT
bool "M32104UT"
select PLAT_HAS_INT1ICU
help
The M3T-M32104UT is an reference board based on uT-Engine
specification. This board has a M32104 chip.
Expand Down Expand Up @@ -149,6 +157,18 @@ config ISA_DUAL_ISSUE
depends on CHIP_M32700 || CHIP_OPSP
default y

config PLAT_HAS_INT0ICU
bool
default n

config PLAT_HAS_INT1ICU
bool
default n

config PLAT_HAS_INT2ICU
bool
default n

config BUS_CLOCK
int "Bus Clock [Hz] (integer)"
default "70000000" if PLAT_MAPPI
Expand Down
3 changes: 2 additions & 1 deletion trunk/arch/m32r/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
libs-y += arch/m32r/lib/ $(LIBGCC)
core-y += arch/m32r/kernel/ \
arch/m32r/mm/ \
arch/m32r/boot/
arch/m32r/boot/ \
arch/m32r/platforms/

drivers-$(CONFIG_OPROFILE) += arch/m32r/oprofile/

Expand Down
Loading

0 comments on commit 74b4fe5

Please sign in to comment.