mirror of
https://github.com/adulau/aha.git
synced 2025-01-02 14:13:18 +00:00
[POWERPC] iseries: Move ItLpNaca into platforms/iseries
Move ItLpNaca into platforms/iseries now that it's not used elsewhere. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
This commit is contained in:
parent
a2ced11b6a
commit
06a36db1d7
6 changed files with 7 additions and 9 deletions
|
@ -56,7 +56,6 @@
|
||||||
#include <asm/page.h>
|
#include <asm/page.h>
|
||||||
#include <asm/mmu.h>
|
#include <asm/mmu.h>
|
||||||
#include <asm/lmb.h>
|
#include <asm/lmb.h>
|
||||||
#include <asm/iseries/it_lp_naca.h>
|
|
||||||
#include <asm/firmware.h>
|
#include <asm/firmware.h>
|
||||||
#include <asm/xmon.h>
|
#include <asm/xmon.h>
|
||||||
#include <asm/udbg.h>
|
#include <asm/udbg.h>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <asm/iseries/hv_lp_config.h>
|
#include <asm/iseries/hv_lp_config.h>
|
||||||
#include <asm/iseries/it_lp_naca.h>
|
#include "it_lp_naca.h"
|
||||||
|
|
||||||
HvLpIndex HvLpConfig_getLpIndex_outline(void)
|
HvLpIndex HvLpConfig_getLpIndex_outline(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
#ifndef _ASM_POWERPC_ISERIES_IT_LP_NACA_H
|
#ifndef _PLATFORMS_ISERIES_IT_LP_NACA_H
|
||||||
#define _ASM_POWERPC_ISERIES_IT_LP_NACA_H
|
#define _PLATFORMS_ISERIES_IT_LP_NACA_H
|
||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
|
@ -77,4 +77,4 @@ extern struct ItLpNaca itLpNaca;
|
||||||
#define ITLPNACA_HWSYNCEDTBS 0x20 /* Hardware synced TBs */
|
#define ITLPNACA_HWSYNCEDTBS 0x20 /* Hardware synced TBs */
|
||||||
#define ITLPNACA_HMTINT 0x10 /* Utilize MHT for interrupts */
|
#define ITLPNACA_HMTINT 0x10 /* Utilize MHT for interrupts */
|
||||||
|
|
||||||
#endif /* _ASM_POWERPC_ISERIES_IT_LP_NACA_H */
|
#endif /* _PLATFORMS_ISERIES_IT_LP_NACA_H */
|
|
@ -13,7 +13,6 @@
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <asm/ptrace.h>
|
#include <asm/ptrace.h>
|
||||||
#include <asm/abs_addr.h>
|
#include <asm/abs_addr.h>
|
||||||
#include <asm/iseries/it_lp_naca.h>
|
|
||||||
#include <asm/lppaca.h>
|
#include <asm/lppaca.h>
|
||||||
#include <asm/iseries/it_lp_reg_save.h>
|
#include <asm/iseries/it_lp_reg_save.h>
|
||||||
#include <asm/paca.h>
|
#include <asm/paca.h>
|
||||||
|
@ -27,6 +26,7 @@
|
||||||
#include "processor_vpd.h"
|
#include "processor_vpd.h"
|
||||||
#include "release_data.h"
|
#include "release_data.h"
|
||||||
#include "it_exp_vpd_panel.h"
|
#include "it_exp_vpd_panel.h"
|
||||||
|
#include "it_lp_naca.h"
|
||||||
|
|
||||||
/* The HvReleaseData is the root of the information shared between
|
/* The HvReleaseData is the root of the information shared between
|
||||||
* the hypervisor and Linux.
|
* the hypervisor and Linux.
|
||||||
|
@ -127,7 +127,6 @@ struct ItLpNaca itLpNaca = {
|
||||||
(u64)instruction_access_slb_iSeries /* 0x480 I-SLB */
|
(u64)instruction_access_slb_iSeries /* 0x480 I-SLB */
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
EXPORT_SYMBOL(itLpNaca);
|
|
||||||
|
|
||||||
/* May be filled in by the hypervisor so cannot end up in the BSS */
|
/* May be filled in by the hypervisor so cannot end up in the BSS */
|
||||||
struct ItIplParmsReal xItIplParmsReal __attribute__((__section__(".data")));
|
struct ItIplParmsReal xItIplParmsReal __attribute__((__section__(".data")));
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#include <asm/iseries/it_lp_queue.h>
|
#include <asm/iseries/it_lp_queue.h>
|
||||||
#include <asm/iseries/hv_lp_event.h>
|
#include <asm/iseries/hv_lp_event.h>
|
||||||
#include <asm/iseries/hv_call_event.h>
|
#include <asm/iseries/hv_call_event.h>
|
||||||
#include <asm/iseries/it_lp_naca.h>
|
#include "it_lp_naca.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The LpQueue is used to pass event data from the hypervisor to
|
* The LpQueue is used to pass event data from the hypervisor to
|
||||||
|
|
|
@ -48,7 +48,6 @@
|
||||||
#include <asm/iseries/hv_call_event.h>
|
#include <asm/iseries/hv_call_event.h>
|
||||||
#include <asm/iseries/hv_call_xm.h>
|
#include <asm/iseries/hv_call_xm.h>
|
||||||
#include <asm/iseries/it_lp_queue.h>
|
#include <asm/iseries/it_lp_queue.h>
|
||||||
#include <asm/iseries/it_lp_naca.h>
|
|
||||||
#include <asm/iseries/mf.h>
|
#include <asm/iseries/mf.h>
|
||||||
#include <asm/iseries/hv_lp_event.h>
|
#include <asm/iseries/hv_lp_event.h>
|
||||||
#include <asm/iseries/lpar_map.h>
|
#include <asm/iseries/lpar_map.h>
|
||||||
|
@ -60,6 +59,7 @@
|
||||||
#include "irq.h"
|
#include "irq.h"
|
||||||
#include "vpd_areas.h"
|
#include "vpd_areas.h"
|
||||||
#include "processor_vpd.h"
|
#include "processor_vpd.h"
|
||||||
|
#include "it_lp_naca.h"
|
||||||
#include "main_store.h"
|
#include "main_store.h"
|
||||||
#include "call_sm.h"
|
#include "call_sm.h"
|
||||||
#include "call_hpt.h"
|
#include "call_hpt.h"
|
||||||
|
|
Loading…
Reference in a new issue