[PATCH v2 1/5] x86: add i8042 pre-detection hook to x86_platform_ops

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: feng.tang
Date: Monday, July 5, 2010 - 8:03 am

From: Feng Tang <feng.tang@intel.com>

Some x86 platforms like intel MID platforms don't have i8042 controllers,
and i8042 driver's probe to some legacy IO ports may hang the MID
processor. With this hook, i8042 driver can runtime check and skip the
probe when the pretection fail which also saves some probe time

Signed-off-by: Feng Tang <feng.tang@intel.com>
---
 arch/x86/include/asm/x86_init.h |    2 ++
 arch/x86/kernel/x86_init.c      |    4 +++-
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h
index 519b543..baa579c 100644
--- a/arch/x86/include/asm/x86_init.h
+++ b/arch/x86/include/asm/x86_init.h
@@ -142,6 +142,7 @@ struct x86_cpuinit_ops {
  * @set_wallclock:		set time back to HW clock
  * @is_untracked_pat_range	exclude from PAT logic
  * @nmi_init			enable NMI on cpus
+ * @i8042_detect		pre-detect if i8042 controller exists
  */
 struct x86_platform_ops {
 	unsigned long (*calibrate_tsc)(void);
@@ -150,6 +151,7 @@ struct x86_platform_ops {
 	void (*iommu_shutdown)(void);
 	bool (*is_untracked_pat_range)(u64 start, u64 end);
 	void (*nmi_init)(void);
+	int (*i8042_detect)(void);
 };
 
 extern struct x86_init_ops x86_init;
diff --git a/arch/x86/kernel/x86_init.c b/arch/x86/kernel/x86_init.c
index 61a1e8c..1e0c863 100644
--- a/arch/x86/kernel/x86_init.c
+++ b/arch/x86/kernel/x86_init.c
@@ -85,6 +85,7 @@ struct x86_cpuinit_ops x86_cpuinit __cpuinitdata = {
 };
 
 static void default_nmi_init(void) { };
+static int default_i8042_detect(void) { return 1; };
 
 struct x86_platform_ops x86_platform = {
 	.calibrate_tsc			= native_calibrate_tsc,
@@ -92,5 +93,6 @@ struct x86_platform_ops x86_platform = {
 	.set_wallclock			= mach_set_rtc_mmss,
 	.iommu_shutdown			= iommu_shutdown_noop,
 	.is_untracked_pat_range		= is_ISA_range,
-	.nmi_init			= default_nmi_init
+	.nmi_init			= default_nmi_init,
+	.i8042_detect			= default_i8042_detect
 };
-- 
1.7.0.4

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH v2 1/5] x86: add i8042 pre-detection hook to x86_pl ..., feng.tang, (Mon Jul 5, 8:03 am)
[tip:x86/urgent] x86, platform: Export x86_platform to modules, tip-bot for H. Peter ..., (Thu Jul 8, 12:15 am)
[tip:x86/urgent] x86: Add i8042 pre-detection hook to x86_ ..., tip-bot for Feng Tang, (Thu Jul 8, 12:16 am)
[tip:x86/urgent] x86, mrst: Add i8042_detect API for Moore ..., tip-bot for Feng Tang, (Thu Jul 8, 12:16 am)
[tip:x86/urgent] Revert &quot;Input: do not force selecting i80 ..., tip-bot for Feng Tang, (Thu Jul 8, 12:16 am)
[tip:x86/urgent] Revert &quot;Input: fixup X86_MRST selects&quot;, tip-bot for Feng Tang, (Thu Jul 8, 12:16 am)
[tip:x86/urgent] input: i8042 - add runtime check in x86's ..., tip-bot for Feng Tang, (Thu Jul 8, 12:17 am)