Commit 69cd9cd7 authored by Anton Blanchard's avatar Anton Blanchard

Merge samba.org:/scratch/anton/sfr

into samba.org:/scratch/anton/for-alan
parents f695e497 8752fb78
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
_stext: _stext:
_STATIC(__start) _STATIC(__start)
b .__start_initialization_pSeries b .__start_initialization_pSeries
#ifdef CONFIG_PPC_ISERIES
/* At offset 0x20, there is a pointer to iSeries LPAR data. /* At offset 0x20, there is a pointer to iSeries LPAR data.
* This is required by the hypervisor */ * This is required by the hypervisor */
. = 0x20 . = 0x20
...@@ -90,9 +90,7 @@ _STATIC(__start) ...@@ -90,9 +90,7 @@ _STATIC(__start)
* between physical addresses and absolute addresses) and * between physical addresses and absolute addresses) and
* to the pidhash table (also used by the debugger) */ * to the pidhash table (also used by the debugger) */
.llong msChunks-KERNELBASE .llong msChunks-KERNELBASE
#ifdef CONFIG_PPC_ISERIES
.llong pidhash-KERNELBASE .llong pidhash-KERNELBASE
#endif
/* Offset 0x38 - Pointer to start of embedded System.map */ /* Offset 0x38 - Pointer to start of embedded System.map */
.globl embedded_sysmap_start .globl embedded_sysmap_start
...@@ -102,6 +100,7 @@ embedded_sysmap_start: ...@@ -102,6 +100,7 @@ embedded_sysmap_start:
.globl embedded_sysmap_end .globl embedded_sysmap_end
embedded_sysmap_end: embedded_sysmap_end:
.llong 0 .llong 0
#endif
/* Secondary processors spin on this value until it goes to 1. */ /* Secondary processors spin on this value until it goes to 1. */
.globl __secondary_hold_spinloop .globl __secondary_hold_spinloop
...@@ -365,11 +364,15 @@ __start_interupts: ...@@ -365,11 +364,15 @@ __start_interupts:
* point to itVpdAreas. On pSeries native, this value is not used. * point to itVpdAreas. On pSeries native, this value is not used.
*/ */
. = 0x4000 . = 0x4000
.globl __end_interupts .globl __end_interrupts
.globl __start_naca .globl __start_naca
__end_interupts: __end_interupts:
__start_naca: __start_naca:
#ifdef CONFIG_PPC_ISERIES
.llong itVpdAreas .llong itVpdAreas
#else
.llong 0x0
#endif
.llong 0x0 .llong 0x0
.llong 0x0 .llong 0x0
.llong paca .llong paca
...@@ -390,6 +393,7 @@ __start_stab: ...@@ -390,6 +393,7 @@ __start_stab:
.globl __end_stab .globl __end_stab
__end_stab: __end_stab:
#ifdef CONFIG_PPC_ISERIES
/* /*
* The iSeries LPAR map is at this fixed address * The iSeries LPAR map is at this fixed address
* so that the HvReleaseData structure can address * so that the HvReleaseData structure can address
...@@ -503,7 +507,7 @@ maskable_exception_exit: ...@@ -503,7 +507,7 @@ maskable_exception_exit:
mfspr r21,SPRG1 mfspr r21,SPRG1
mfspr r20,SPRG2 mfspr r20,SPRG2
rfid rfid
#endif
/* /*
* Data area reserved for FWNMI option. * Data area reserved for FWNMI option.
*/ */
...@@ -1217,7 +1221,7 @@ _GLOBAL(pseries_secondary_smp_init) ...@@ -1217,7 +1221,7 @@ _GLOBAL(pseries_secondary_smp_init)
#endif #endif
#endif #endif
b 1b /* Loop until told to go */ b 1b /* Loop until told to go */
#ifdef CONFIG_PPC_ISERIES
_GLOBAL(__start_initialization_iSeries) _GLOBAL(__start_initialization_iSeries)
LOADADDR(r1,init_thread_union) LOADADDR(r1,init_thread_union)
...@@ -1241,6 +1245,7 @@ _GLOBAL(__start_initialization_iSeries) ...@@ -1241,6 +1245,7 @@ _GLOBAL(__start_initialization_iSeries)
bl .iSeries_fixup_klimit bl .iSeries_fixup_klimit
b .start_here_common b .start_here_common
#endif
_GLOBAL(__start_initialization_pSeries) _GLOBAL(__start_initialization_pSeries)
mr r31,r3 /* save parameters */ mr r31,r3 /* save parameters */
......
...@@ -147,6 +147,7 @@ static unsigned long __inline__ count_leading_zeros64( unsigned long x ) ...@@ -147,6 +147,7 @@ static unsigned long __inline__ count_leading_zeros64( unsigned long x )
return lz; return lz;
} }
#ifdef CONFIG_PPC_ISERIES
static void tce_build_iSeries(struct TceTable *tbl, long tcenum, static void tce_build_iSeries(struct TceTable *tbl, long tcenum,
unsigned long uaddr, int direction ) unsigned long uaddr, int direction )
{ {
...@@ -180,7 +181,9 @@ static void tce_build_iSeries(struct TceTable *tbl, long tcenum, ...@@ -180,7 +181,9 @@ static void tce_build_iSeries(struct TceTable *tbl, long tcenum,
panic("PCI_DMA: HvCallXm_setTce failed, Rc: 0x%lx\n", setTceRc); panic("PCI_DMA: HvCallXm_setTce failed, Rc: 0x%lx\n", setTceRc);
} }
} }
#endif
#ifdef CONFIG_PPC_PSERIES
static void tce_build_pSeries(struct TceTable *tbl, long tcenum, static void tce_build_pSeries(struct TceTable *tbl, long tcenum,
unsigned long uaddr, int direction ) unsigned long uaddr, int direction )
{ {
...@@ -199,8 +202,8 @@ static void tce_build_pSeries(struct TceTable *tbl, long tcenum, ...@@ -199,8 +202,8 @@ static void tce_build_pSeries(struct TceTable *tbl, long tcenum,
tce_addr = ((union Tce *)tbl->base) + tcenum; tce_addr = ((union Tce *)tbl->base) + tcenum;
*tce_addr = (union Tce)tce.wholeTce; *tce_addr = (union Tce)tce.wholeTce;
} }
#endif
/* /*
* Build a TceTable structure. This contains a multi-level bit map which * Build a TceTable structure. This contains a multi-level bit map which
...@@ -548,6 +551,7 @@ static inline dma_addr_t get_tces( struct TceTable *tbl, unsigned order, void *p ...@@ -548,6 +551,7 @@ static inline dma_addr_t get_tces( struct TceTable *tbl, unsigned order, void *p
return retTce; return retTce;
} }
#ifdef CONFIG_PPC_ISERIES
static void tce_free_one_iSeries( struct TceTable *tbl, long tcenum ) static void tce_free_one_iSeries( struct TceTable *tbl, long tcenum )
{ {
u64 set_tce_rc; u64 set_tce_rc;
...@@ -560,7 +564,9 @@ static void tce_free_one_iSeries( struct TceTable *tbl, long tcenum ) ...@@ -560,7 +564,9 @@ static void tce_free_one_iSeries( struct TceTable *tbl, long tcenum )
panic("PCI_DMA: HvCallXm_setTce failed, Rc: 0x%lx\n", set_tce_rc); panic("PCI_DMA: HvCallXm_setTce failed, Rc: 0x%lx\n", set_tce_rc);
} }
#endif
#ifdef CONFIG_PPC_PSERIES
static void tce_free_one_pSeries( struct TceTable *tbl, long tcenum ) static void tce_free_one_pSeries( struct TceTable *tbl, long tcenum )
{ {
union Tce tce; union Tce tce;
...@@ -572,6 +578,7 @@ static void tce_free_one_pSeries( struct TceTable *tbl, long tcenum ) ...@@ -572,6 +578,7 @@ static void tce_free_one_pSeries( struct TceTable *tbl, long tcenum )
*tce_addr = (union Tce)tce.wholeTce; *tce_addr = (union Tce)tce.wholeTce;
} }
#endif
static void tce_free(struct TceTable *tbl, dma_addr_t dma_addr, static void tce_free(struct TceTable *tbl, dma_addr_t dma_addr,
unsigned order, unsigned num_pages) unsigned order, unsigned num_pages)
...@@ -609,6 +616,7 @@ static void tce_free(struct TceTable *tbl, dma_addr_t dma_addr, ...@@ -609,6 +616,7 @@ static void tce_free(struct TceTable *tbl, dma_addr_t dma_addr,
free_tce_range( tbl, free_tce, order ); free_tce_range( tbl, free_tce, order );
} }
#ifdef CONFIG_PPC_ISERIES
void __init create_virtual_bus_tce_table(void) void __init create_virtual_bus_tce_table(void)
{ {
struct TceTable *t; struct TceTable *t;
...@@ -661,6 +669,7 @@ void __init create_virtual_bus_tce_table(void) ...@@ -661,6 +669,7 @@ void __init create_virtual_bus_tce_table(void)
} }
else printk( "Virtual Bus VIO TCE table failed.\n"); else printk( "Virtual Bus VIO TCE table failed.\n");
} }
#endif
void create_tce_tables_for_buses(struct list_head *bus_list) void create_tce_tables_for_buses(struct list_head *bus_list)
{ {
...@@ -842,6 +851,7 @@ static struct TceTable* findHwTceTable(struct TceTable * newTceTable ) ...@@ -842,6 +851,7 @@ static struct TceTable* findHwTceTable(struct TceTable * newTceTable )
static void getTceTableParmsiSeries(struct iSeries_Device_Node* DevNode, static void getTceTableParmsiSeries(struct iSeries_Device_Node* DevNode,
struct TceTable* newTceTable ) struct TceTable* newTceTable )
{ {
#ifdef CONFIG_PPC_ISERIES
struct TceTableManagerCB* pciBusTceTableParms = (struct TceTableManagerCB*)kmalloc( sizeof(struct TceTableManagerCB), GFP_KERNEL ); struct TceTableManagerCB* pciBusTceTableParms = (struct TceTableManagerCB*)kmalloc( sizeof(struct TceTableManagerCB), GFP_KERNEL );
if(pciBusTceTableParms == NULL) panic("PCI_DMA: TCE Table Allocation failed."); if(pciBusTceTableParms == NULL) panic("PCI_DMA: TCE Table Allocation failed.");
...@@ -872,6 +882,7 @@ static void getTceTableParmsiSeries(struct iSeries_Device_Node* DevNode, ...@@ -872,6 +882,7 @@ static void getTceTableParmsiSeries(struct iSeries_Device_Node* DevNode,
newTceTable->tceType = TCE_PCI; newTceTable->tceType = TCE_PCI;
kfree(pciBusTceTableParms); kfree(pciBusTceTableParms);
#endif
} }
static void getTceTableParmsPSeries(struct pci_controller *phb, static void getTceTableParmsPSeries(struct pci_controller *phb,
...@@ -1440,15 +1451,19 @@ void pci_unmap_sg(struct pci_dev *pdev, struct scatterlist *sglist, int nelems, ...@@ -1440,15 +1451,19 @@ void pci_unmap_sg(struct pci_dev *pdev, struct scatterlist *sglist, int nelems,
} }
#endif #endif
#ifdef CONFIG_PPC_PSERIES
/* These are called very early. */ /* These are called very early. */
void tce_init_pSeries(void) void tce_init_pSeries(void)
{ {
ppc_md.tce_build = tce_build_pSeries; ppc_md.tce_build = tce_build_pSeries;
ppc_md.tce_free_one = tce_free_one_pSeries; ppc_md.tce_free_one = tce_free_one_pSeries;
} }
#endif
#ifdef CONFIG_PPC_ISERIES
void tce_init_iSeries(void) void tce_init_iSeries(void)
{ {
ppc_md.tce_build = tce_build_iSeries; ppc_md.tce_build = tce_build_iSeries;
ppc_md.tce_free_one = tce_free_one_iSeries; ppc_md.tce_free_one = tce_free_one_iSeries;
} }
#endif
...@@ -1060,9 +1060,11 @@ prom_init(unsigned long r3, unsigned long r4, unsigned long pp, ...@@ -1060,9 +1060,11 @@ prom_init(unsigned long r3, unsigned long r4, unsigned long pp,
/* Default machine type. */ /* Default machine type. */
_naca->platform = PLATFORM_PSERIES; _naca->platform = PLATFORM_PSERIES;
#if 0
/* Reset klimit to take into account the embedded system map */ /* Reset klimit to take into account the embedded system map */
if (RELOC(embedded_sysmap_end)) if (RELOC(embedded_sysmap_end))
RELOC(klimit) = __va(PAGE_ALIGN(RELOC(embedded_sysmap_end))); RELOC(klimit) = __va(PAGE_ALIGN(RELOC(embedded_sysmap_end)));
#endif
/* Get a handle to the prom entry point before anything else */ /* Get a handle to the prom entry point before anything else */
_prom->entry = pp; _prom->entry = pp;
......
...@@ -257,6 +257,7 @@ static int rtc_read_proc(char *page, char **start, off_t off, ...@@ -257,6 +257,7 @@ static int rtc_read_proc(char *page, char **start, off_t off,
return len; return len;
} }
#ifdef CONFIG_PPC_ISERIES
/* /*
* Get the RTC from the virtual service processor * Get the RTC from the virtual service processor
* This requires flowing LpEvents to the primary partition * This requires flowing LpEvents to the primary partition
...@@ -270,60 +271,6 @@ void iSeries_get_rtc_time(struct rtc_time *rtc_tm) ...@@ -270,60 +271,6 @@ void iSeries_get_rtc_time(struct rtc_time *rtc_tm)
rtc_tm->tm_mon--; rtc_tm->tm_mon--;
} }
void pSeries_get_rtc_time(struct rtc_time *rtc_tm)
{
unsigned long ret[8];
int error;
int count;
/*
* error -2 is clock busy, we keep retrying a few times to see
* if it will come good -- paulus
*/
count = 0;
do {
error = rtas_call(rtas_token("get-time-of-day"), 0, 8, (void *)&ret);
} while (error == -2 && ++count < 1000);
if (error != 0) {
printk(KERN_WARNING "error: reading the clock failed (%d)\n",
error);
return;
}
rtc_tm->tm_sec = ret[5];
rtc_tm->tm_min = ret[4];
rtc_tm->tm_hour = ret[3];
rtc_tm->tm_mday = ret[2];
rtc_tm->tm_mon = ret[1] - 1;
rtc_tm->tm_year = ret[0] - 1900;
}
int pSeries_set_rtc_time(struct rtc_time *tm)
{
int error;
int count;
/*
* error -2 is clock busy, we keep retrying a few times to see
* if it will come good -- paulus
*/
count = 0;
do {
error = rtas_call(rtas_token("set-time-of-day"), 7, 1, NULL,
tm->tm_year + 1900, tm->tm_mon + 1,
tm->tm_mday, tm->tm_hour, tm->tm_min,
tm->tm_sec, 0);
} while (error == -2 && ++count < 1000);
if (error != 0)
printk(KERN_WARNING "error: setting the clock failed (%d)\n",
error);
return 0;
}
/* /*
* Set the RTC in the virtual service processor * Set the RTC in the virtual service processor
* This requires flowing LpEvents to the primary partition * This requires flowing LpEvents to the primary partition
...@@ -379,3 +326,59 @@ void iSeries_get_boot_time(struct rtc_time *tm) ...@@ -379,3 +326,59 @@ void iSeries_get_boot_time(struct rtc_time *tm)
tm->tm_year -= 1900; tm->tm_year -= 1900;
tm->tm_mon -= 1; tm->tm_mon -= 1;
} }
#endif
#ifdef CONFIG_PPC_PSERIES
void pSeries_get_rtc_time(struct rtc_time *rtc_tm)
{
unsigned long ret[8];
int error;
int count;
/*
* error -2 is clock busy, we keep retrying a few times to see
* if it will come good -- paulus
*/
count = 0;
do {
error = rtas_call(rtas_token("get-time-of-day"), 0, 8, (void *)&ret);
} while (error == -2 && ++count < 1000);
if (error != 0) {
printk(KERN_WARNING "error: reading the clock failed (%d)\n",
error);
return;
}
rtc_tm->tm_sec = ret[5];
rtc_tm->tm_min = ret[4];
rtc_tm->tm_hour = ret[3];
rtc_tm->tm_mday = ret[2];
rtc_tm->tm_mon = ret[1] - 1;
rtc_tm->tm_year = ret[0] - 1900;
}
int pSeries_set_rtc_time(struct rtc_time *tm)
{
int error;
int count;
/*
* error -2 is clock busy, we keep retrying a few times to see
* if it will come good -- paulus
*/
count = 0;
do {
error = rtas_call(rtas_token("set-time-of-day"), 7, 1, NULL,
tm->tm_year + 1900, tm->tm_mon + 1,
tm->tm_mday, tm->tm_hour, tm->tm_min,
tm->tm_sec, 0);
} while (error == -2 && ++count < 1000);
if (error != 0)
printk(KERN_WARNING "error: setting the clock failed (%d)\n",
error);
return 0;
}
#endif
...@@ -153,14 +153,18 @@ void setup_system(unsigned long r3, unsigned long r4, unsigned long r5, ...@@ -153,14 +153,18 @@ void setup_system(unsigned long r3, unsigned long r4, unsigned long r5,
debugger_dabr_match = xmon_dabr_match; debugger_dabr_match = xmon_dabr_match;
#endif #endif
#ifdef CONFIG_PPC_ISERIES
/* pSeries systems are identified in prom.c via OF. */ /* pSeries systems are identified in prom.c via OF. */
if ( itLpNaca.xLparInstalled == 1 ) if ( itLpNaca.xLparInstalled == 1 )
naca->platform = PLATFORM_ISERIES_LPAR; naca->platform = PLATFORM_ISERIES_LPAR;
#endif
switch (naca->platform) { switch (naca->platform) {
#ifdef CONFIG_PPC_ISERIES
case PLATFORM_ISERIES_LPAR: case PLATFORM_ISERIES_LPAR:
iSeries_init_early(); iSeries_init_early();
break; break;
#endif
#ifdef CONFIG_PPC_PSERIES #ifdef CONFIG_PPC_PSERIES
case PLATFORM_PSERIES: case PLATFORM_PSERIES:
...@@ -215,9 +219,11 @@ void setup_system(unsigned long r3, unsigned long r4, unsigned long r5, ...@@ -215,9 +219,11 @@ void setup_system(unsigned long r3, unsigned long r4, unsigned long r5,
mm_init_ppc64(); mm_init_ppc64();
switch (naca->platform) { switch (naca->platform) {
#ifdef CONFIG_PPC_ISERIES
case PLATFORM_ISERIES_LPAR: case PLATFORM_ISERIES_LPAR:
iSeries_init(); iSeries_init();
break; break;
#endif
default: default:
/* The following relies on the device tree being */ /* The following relies on the device tree being */
/* fully configured. */ /* fully configured. */
......
...@@ -86,6 +86,7 @@ static inline void set_tb(unsigned int upper, unsigned int lower) ...@@ -86,6 +86,7 @@ static inline void set_tb(unsigned int upper, unsigned int lower)
mttbl(lower); mttbl(lower);
} }
#ifdef CONFIG_PPC_ISERIES
void iSeries_smp_message_recv( struct pt_regs * regs ) void iSeries_smp_message_recv( struct pt_regs * regs )
{ {
int cpu = smp_processor_id(); int cpu = smp_processor_id();
...@@ -117,7 +118,6 @@ static void smp_iSeries_message_pass(int target, int msg, unsigned long data, in ...@@ -117,7 +118,6 @@ static void smp_iSeries_message_pass(int target, int msg, unsigned long data, in
} }
} }
#ifdef CONFIG_PPC_ISERIES
static int smp_iSeries_numProcs(void) static int smp_iSeries_numProcs(void)
{ {
unsigned np, i; unsigned np, i;
...@@ -132,7 +132,6 @@ static int smp_iSeries_numProcs(void) ...@@ -132,7 +132,6 @@ static int smp_iSeries_numProcs(void)
} }
return np; return np;
} }
#endif
static int smp_iSeries_probe(void) static int smp_iSeries_probe(void)
{ {
...@@ -189,13 +188,12 @@ void __init smp_init_iSeries(void) ...@@ -189,13 +188,12 @@ void __init smp_init_iSeries(void)
smp_ops->probe = smp_iSeries_probe; smp_ops->probe = smp_iSeries_probe;
smp_ops->kick_cpu = smp_iSeries_kick_cpu; smp_ops->kick_cpu = smp_iSeries_kick_cpu;
smp_ops->setup_cpu = smp_iSeries_setup_cpu; smp_ops->setup_cpu = smp_iSeries_setup_cpu;
#ifdef CONFIG_PPC_ISERIES
#warning fix for iseries #warning fix for iseries
naca->processorCount = smp_iSeries_numProcs(); naca->processorCount = smp_iSeries_numProcs();
#endif
} }
#endif
#ifdef CONFIG_PPC_PSERIES
static void static void
smp_openpic_message_pass(int target, int msg, unsigned long data, int wait) smp_openpic_message_pass(int target, int msg, unsigned long data, int wait)
{ {
...@@ -257,6 +255,7 @@ smp_kick_cpu(int nr) ...@@ -257,6 +255,7 @@ smp_kick_cpu(int nr)
*/ */
paca[nr].xProcStart = 1; paca[nr].xProcStart = 1;
} }
#endif
static void __init smp_space_timers(unsigned int max_cpus) static void __init smp_space_timers(unsigned int max_cpus)
{ {
...@@ -273,6 +272,7 @@ static void __init smp_space_timers(unsigned int max_cpus) ...@@ -273,6 +272,7 @@ static void __init smp_space_timers(unsigned int max_cpus)
} }
} }
#ifdef CONFIG_PPC_PSERIES
static void __devinit pSeries_setup_cpu(int cpu) static void __devinit pSeries_setup_cpu(int cpu)
{ {
if (OpenPIC_Addr) { if (OpenPIC_Addr) {
...@@ -361,6 +361,7 @@ void __init smp_init_pSeries(void) ...@@ -361,6 +361,7 @@ void __init smp_init_pSeries(void)
smp_ops->kick_cpu = smp_kick_cpu; smp_ops->kick_cpu = smp_kick_cpu;
smp_ops->setup_cpu = pSeries_setup_cpu; smp_ops->setup_cpu = pSeries_setup_cpu;
} }
#endif
void smp_local_timer_interrupt(struct pt_regs * regs) void smp_local_timer_interrupt(struct pt_regs * regs)
{ {
......
...@@ -301,9 +301,11 @@ int timer_interrupt(struct pt_regs * regs) ...@@ -301,9 +301,11 @@ int timer_interrupt(struct pt_regs * regs)
next_dec = lpaca->default_decr; next_dec = lpaca->default_decr;
set_dec(next_dec); set_dec(next_dec);
#ifdef CONFIG_PPC_ISERIES
lpq = lpaca->lpQueuePtr; lpq = lpaca->lpQueuePtr;
if (lpq && ItLpQueue_isLpIntPending(lpq)) if (lpq && ItLpQueue_isLpIntPending(lpq))
lpEvent_count += ItLpQueue_process(lpq, regs); lpEvent_count += ItLpQueue_process(lpq, regs);
#endif
irq_exit(); irq_exit();
...@@ -458,9 +460,11 @@ void __init time_init(void) ...@@ -458,9 +460,11 @@ void __init time_init(void)
ppc_md.calibrate_decr(); ppc_md.calibrate_decr();
if ( ! piranha_simulator ) { #ifdef CONFIG_PPC_ISERIES
if (!piranha_simulator)
#endif
ppc_md.get_boot_time(&tm); ppc_md.get_boot_time(&tm);
}
write_lock_irqsave(&xtime_lock, flags); write_lock_irqsave(&xtime_lock, flags);
xtime.tv_sec = mktime(tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, xtime.tv_sec = mktime(tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
tm.tm_hour, tm.tm_min, tm.tm_sec); tm.tm_hour, tm.tm_min, tm.tm_sec);
......
...@@ -48,7 +48,7 @@ static __inline__ void clear_page(void *addr) ...@@ -48,7 +48,7 @@ static __inline__ void clear_page(void *addr)
lines = naca->dCacheL1LinesPerPage; lines = naca->dCacheL1LinesPerPage;
__asm__ __volatile__( __asm__ __volatile__(
" mtctr %1\n\ "mtctr %1 # clear_page\n\
1: dcbz 0,%0\n\ 1: dcbz 0,%0\n\
add %0,%0,%3\n\ add %0,%0,%3\n\
bdnz+ 1b" bdnz+ 1b"
......
...@@ -267,8 +267,8 @@ static inline unsigned long pte_update( pte_t *p, unsigned long clr, ...@@ -267,8 +267,8 @@ static inline unsigned long pte_update( pte_t *p, unsigned long clr,
{ {
unsigned long old, tmp; unsigned long old, tmp;
__asm__ __volatile__("\n\ __asm__ __volatile__(
1: ldarx %0,0,%3 \n\ "1: ldarx %0,0,%3 # pte_update\n\
andc %1,%0,%4 \n\ andc %1,%0,%4 \n\
or %1,%1,%5 \n\ or %1,%1,%5 \n\
stdcx. %1,0,%3 \n\ stdcx. %1,0,%3 \n\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment