-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 224072 b: refs/heads/master c: c751e17 h: refs/heads/master v: v3
- Loading branch information
Thomas Gleixner
committed
Nov 11, 2010
1 parent
e1d5ec9
commit bedca7d
Showing
9 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 6f207e9bb4219d261d9326597ca533f954f31755 | ||
refs/heads/master: c751e17b5371ad86cdde6cf5c0175e06f3ff0347 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Platform specific code goes here | ||
obj-y += ce4100/ | ||
obj-y += efi/ | ||
obj-y += mrst/ | ||
obj-y += olpc/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-$(CONFIG_X86_INTEL_CE) += ce4100.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Intel CE4100 platform specific setup code | ||
* | ||
* (C) Copyright 2010 Intel Corporation | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; version 2 | ||
* of the License. | ||
*/ | ||
#include <linux/init.h> | ||
#include <linux/kernel.h> | ||
#include <linux/irq.h> | ||
#include <linux/module.h> | ||
|
||
#include <asm/setup.h> | ||
|
||
static int ce4100_i8042_detect(void) | ||
{ | ||
return 0; | ||
} | ||
|
||
static void __init sdv_arch_setup(void) | ||
{ | ||
} | ||
|
||
static void __init sdv_find_smp_config(void) | ||
{ | ||
} | ||
|
||
/* | ||
* CE4100 specific x86_init function overrides and early setup | ||
* calls. | ||
*/ | ||
void __init x86_ce4100_early_setup(void) | ||
{ | ||
x86_init.oem.arch_setup = sdv_arch_setup; | ||
x86_platform.i8042_detect = ce4100_i8042_detect; | ||
x86_init.resources.probe_roms = x86_init_noop; | ||
x86_init.mpparse.get_smp_config = x86_init_uint_noop; | ||
x86_init.mpparse.find_smp_config = sdv_find_smp_config; | ||
} |