-
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.
- Loading branch information
Showing
48 changed files
with
410 additions
and
432 deletions.
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,4 +1,7 @@ | ||
obj-$(CONFIG_PPC_PMAC) += powermac/ | ||
obj-$(CONFIG_4xx) += 4xx/ | ||
obj-$(CONFIG_83xx) += 83xx/ | ||
obj-$(CONFIG_85xx) += 85xx/ | ||
ifeq ($(CONFIG_PPC32),y) | ||
obj-$(CONFIG_PPC_PMAC) += powermac/ | ||
endif | ||
obj-$(CONFIG_4xx) += 4xx/ | ||
obj-$(CONFIG_83xx) += 83xx/ | ||
obj-$(CONFIG_85xx) += 85xx/ | ||
obj-$(CONFIG_PPC_ISERIES) += iseries/ |
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,7 @@ | ||
obj-y += hvlog.o hvlpconfig.o lpardata.o setup.o mf.o lpevents.o \ | ||
hvcall.o proc.o htab.o iommu.o misc.o | ||
obj-$(CONFIG_PCI) += pci.o irq.o vpdinfo.o | ||
obj-$(CONFIG_IBMVIO) += vio.o | ||
obj-$(CONFIG_SMP) += smp.o | ||
obj-$(CONFIG_VIOPATH) += viopath.o | ||
obj-$(CONFIG_MODULES) += ksyms.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
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
1 change: 0 additions & 1 deletion
1
arch/ppc64/kernel/HvCall.c → arch/powerpc/platforms/iseries/hvlog.c
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
1 change: 0 additions & 1 deletion
1
arch/ppc64/kernel/HvLpConfig.c → arch/powerpc/platforms/iseries/hvlpconfig.c
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 |
---|---|---|
|
@@ -363,4 +363,3 @@ void virt_irq_init(void) | |
{ | ||
return; | ||
} | ||
|
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,27 @@ | ||
/* | ||
* (C) 2001-2005 PPC 64 Team, IBM Corp | ||
* | ||
* 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; either version | ||
* 2 of the License, or (at your option) any later version. | ||
*/ | ||
#include <linux/module.h> | ||
|
||
#include <asm/hw_irq.h> | ||
#include <asm/iSeries/HvCallSc.h> | ||
|
||
EXPORT_SYMBOL(HvCall0); | ||
EXPORT_SYMBOL(HvCall1); | ||
EXPORT_SYMBOL(HvCall2); | ||
EXPORT_SYMBOL(HvCall3); | ||
EXPORT_SYMBOL(HvCall4); | ||
EXPORT_SYMBOL(HvCall5); | ||
EXPORT_SYMBOL(HvCall6); | ||
EXPORT_SYMBOL(HvCall7); | ||
|
||
#ifdef CONFIG_SMP | ||
EXPORT_SYMBOL(local_get_flags); | ||
EXPORT_SYMBOL(local_irq_disable); | ||
EXPORT_SYMBOL(local_irq_restore); | ||
#endif |
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
Oops, something went wrong.