Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6: [SPARC64]: Fix inline directive in pci_iommu.c [SPARC64]: Fix arg passing to compat_sys_ipc(). [SPARC]: Fix section mismatch warnings in pci.c and pcic.c [SUNRPC]: Make sure on-stack cmsg buffer is properly aligned. [SPARC]: avoid CHILD_MAX and OPEN_MAX constants [SPARC64]: Fix SBUS IOMMU allocation code.
This commit is contained in:
commit
b1847a041a
@ -601,7 +601,7 @@ pcic_fill_irq(struct linux_pcic *pcic, struct pci_dev *dev, int node)
|
|||||||
/*
|
/*
|
||||||
* Normally called from {do_}pci_scan_bus...
|
* Normally called from {do_}pci_scan_bus...
|
||||||
*/
|
*/
|
||||||
void __init pcibios_fixup_bus(struct pci_bus *bus)
|
void __devinit pcibios_fixup_bus(struct pci_bus *bus)
|
||||||
{
|
{
|
||||||
struct pci_dev *dev;
|
struct pci_dev *dev;
|
||||||
int i, has_io, has_mem;
|
int i, has_io, has_mem;
|
||||||
@ -842,7 +842,7 @@ static void watchdog_reset() {
|
|||||||
/*
|
/*
|
||||||
* Other archs parse arguments here.
|
* Other archs parse arguments here.
|
||||||
*/
|
*/
|
||||||
char * __init pcibios_setup(char *str)
|
char * __devinit pcibios_setup(char *str)
|
||||||
{
|
{
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
@ -910,7 +910,7 @@ asmlinkage long sunos_sysconf (int name)
|
|||||||
ret = ARG_MAX;
|
ret = ARG_MAX;
|
||||||
break;
|
break;
|
||||||
case _SC_CHILD_MAX:
|
case _SC_CHILD_MAX:
|
||||||
ret = -1; /* no limit */
|
ret = current->signal->rlim[RLIMIT_NPROC].rlim_cur;
|
||||||
break;
|
break;
|
||||||
case _SC_CLK_TCK:
|
case _SC_CLK_TCK:
|
||||||
ret = HZ;
|
ret = HZ;
|
||||||
@ -919,7 +919,7 @@ asmlinkage long sunos_sysconf (int name)
|
|||||||
ret = NGROUPS_MAX;
|
ret = NGROUPS_MAX;
|
||||||
break;
|
break;
|
||||||
case _SC_OPEN_MAX:
|
case _SC_OPEN_MAX:
|
||||||
ret = OPEN_MAX;
|
ret = current->signal->rlim[RLIMIT_NOFILE].rlim_cur;
|
||||||
break;
|
break;
|
||||||
case _SC_JOB_CONTROL:
|
case _SC_JOB_CONTROL:
|
||||||
ret = 1; /* yes, we do support job control */
|
ret = 1; /* yes, we do support job control */
|
||||||
|
@ -327,7 +327,7 @@ static int __init pcibios_init(void)
|
|||||||
|
|
||||||
subsys_initcall(pcibios_init);
|
subsys_initcall(pcibios_init);
|
||||||
|
|
||||||
void pcibios_fixup_bus(struct pci_bus *pbus)
|
void __devinit pcibios_fixup_bus(struct pci_bus *pbus)
|
||||||
{
|
{
|
||||||
struct pci_pbm_info *pbm = pbus->sysdata;
|
struct pci_pbm_info *pbm = pbus->sysdata;
|
||||||
|
|
||||||
@ -405,7 +405,7 @@ void pcibios_bus_to_resource(struct pci_dev *pdev, struct resource *res,
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(pcibios_bus_to_resource);
|
EXPORT_SYMBOL(pcibios_bus_to_resource);
|
||||||
|
|
||||||
char * __init pcibios_setup(char *str)
|
char * __devinit pcibios_setup(char *str)
|
||||||
{
|
{
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
@ -64,7 +64,7 @@ static void __iommu_flushall(struct pci_iommu *iommu)
|
|||||||
#define IOPTE_IS_DUMMY(iommu, iopte) \
|
#define IOPTE_IS_DUMMY(iommu, iopte) \
|
||||||
((iopte_val(*iopte) & IOPTE_PAGE) == (iommu)->dummy_page_pa)
|
((iopte_val(*iopte) & IOPTE_PAGE) == (iommu)->dummy_page_pa)
|
||||||
|
|
||||||
static void inline iopte_make_dummy(struct pci_iommu *iommu, iopte_t *iopte)
|
static inline void iopte_make_dummy(struct pci_iommu *iommu, iopte_t *iopte)
|
||||||
{
|
{
|
||||||
unsigned long val = iopte_val(*iopte);
|
unsigned long val = iopte_val(*iopte);
|
||||||
|
|
||||||
|
@ -24,48 +24,25 @@
|
|||||||
|
|
||||||
#include "iommu_common.h"
|
#include "iommu_common.h"
|
||||||
|
|
||||||
/* These should be allocated on an SMP_CACHE_BYTES
|
|
||||||
* aligned boundary for optimal performance.
|
|
||||||
*
|
|
||||||
* On SYSIO, using an 8K page size we have 1GB of SBUS
|
|
||||||
* DMA space mapped. We divide this space into equally
|
|
||||||
* sized clusters. We allocate a DMA mapping from the
|
|
||||||
* cluster that matches the order of the allocation, or
|
|
||||||
* if the order is greater than the number of clusters,
|
|
||||||
* we try to allocate from the last cluster.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define NCLUSTERS 8UL
|
|
||||||
#define ONE_GIG (1UL * 1024UL * 1024UL * 1024UL)
|
|
||||||
#define CLUSTER_SIZE (ONE_GIG / NCLUSTERS)
|
|
||||||
#define CLUSTER_MASK (CLUSTER_SIZE - 1)
|
|
||||||
#define CLUSTER_NPAGES (CLUSTER_SIZE >> IO_PAGE_SHIFT)
|
|
||||||
#define MAP_BASE ((u32)0xc0000000)
|
#define MAP_BASE ((u32)0xc0000000)
|
||||||
|
|
||||||
|
struct sbus_iommu_arena {
|
||||||
|
unsigned long *map;
|
||||||
|
unsigned int hint;
|
||||||
|
unsigned int limit;
|
||||||
|
};
|
||||||
|
|
||||||
struct sbus_iommu {
|
struct sbus_iommu {
|
||||||
/*0x00*/spinlock_t lock;
|
spinlock_t lock;
|
||||||
|
|
||||||
/*0x08*/iopte_t *page_table;
|
struct sbus_iommu_arena arena;
|
||||||
/*0x10*/unsigned long strbuf_regs;
|
|
||||||
/*0x18*/unsigned long iommu_regs;
|
|
||||||
/*0x20*/unsigned long sbus_control_reg;
|
|
||||||
|
|
||||||
/*0x28*/volatile unsigned long strbuf_flushflag;
|
iopte_t *page_table;
|
||||||
|
unsigned long strbuf_regs;
|
||||||
|
unsigned long iommu_regs;
|
||||||
|
unsigned long sbus_control_reg;
|
||||||
|
|
||||||
/* If NCLUSTERS is ever decresed to 4 or lower,
|
volatile unsigned long strbuf_flushflag;
|
||||||
* you must increase the size of the type of
|
|
||||||
* these counters. You have been duly warned. -DaveM
|
|
||||||
*/
|
|
||||||
/*0x30*/struct {
|
|
||||||
u16 next;
|
|
||||||
u16 flush;
|
|
||||||
} alloc_info[NCLUSTERS];
|
|
||||||
|
|
||||||
/* The lowest used consistent mapping entry. Since
|
|
||||||
* we allocate consistent maps out of cluster 0 this
|
|
||||||
* is relative to the beginning of closter 0.
|
|
||||||
*/
|
|
||||||
/*0x50*/u32 lowest_consistent_map;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Offsets from iommu_regs */
|
/* Offsets from iommu_regs */
|
||||||
@ -91,19 +68,6 @@ static void __iommu_flushall(struct sbus_iommu *iommu)
|
|||||||
tag += 8UL;
|
tag += 8UL;
|
||||||
}
|
}
|
||||||
upa_readq(iommu->sbus_control_reg);
|
upa_readq(iommu->sbus_control_reg);
|
||||||
|
|
||||||
for (entry = 0; entry < NCLUSTERS; entry++) {
|
|
||||||
iommu->alloc_info[entry].flush =
|
|
||||||
iommu->alloc_info[entry].next;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void iommu_flush(struct sbus_iommu *iommu, u32 base, unsigned long npages)
|
|
||||||
{
|
|
||||||
while (npages--)
|
|
||||||
upa_writeq(base + (npages << IO_PAGE_SHIFT),
|
|
||||||
iommu->iommu_regs + IOMMU_FLUSH);
|
|
||||||
upa_readq(iommu->sbus_control_reg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Offsets from strbuf_regs */
|
/* Offsets from strbuf_regs */
|
||||||
@ -156,178 +120,115 @@ static void sbus_strbuf_flush(struct sbus_iommu *iommu, u32 base, unsigned long
|
|||||||
base, npages);
|
base, npages);
|
||||||
}
|
}
|
||||||
|
|
||||||
static iopte_t *alloc_streaming_cluster(struct sbus_iommu *iommu, unsigned long npages)
|
/* Based largely upon the ppc64 iommu allocator. */
|
||||||
|
static long sbus_arena_alloc(struct sbus_iommu *iommu, unsigned long npages)
|
||||||
{
|
{
|
||||||
iopte_t *iopte, *limit, *first, *cluster;
|
struct sbus_iommu_arena *arena = &iommu->arena;
|
||||||
unsigned long cnum, ent, nent, flush_point, found;
|
unsigned long n, i, start, end, limit;
|
||||||
|
int pass;
|
||||||
|
|
||||||
cnum = 0;
|
limit = arena->limit;
|
||||||
nent = 1;
|
start = arena->hint;
|
||||||
while ((1UL << cnum) < npages)
|
pass = 0;
|
||||||
cnum++;
|
|
||||||
if(cnum >= NCLUSTERS) {
|
|
||||||
nent = 1UL << (cnum - NCLUSTERS);
|
|
||||||
cnum = NCLUSTERS - 1;
|
|
||||||
}
|
|
||||||
iopte = iommu->page_table + (cnum * CLUSTER_NPAGES);
|
|
||||||
|
|
||||||
if (cnum == 0)
|
again:
|
||||||
limit = (iommu->page_table +
|
n = find_next_zero_bit(arena->map, limit, start);
|
||||||
iommu->lowest_consistent_map);
|
end = n + npages;
|
||||||
else
|
if (unlikely(end >= limit)) {
|
||||||
limit = (iopte + CLUSTER_NPAGES);
|
if (likely(pass < 1)) {
|
||||||
|
limit = start;
|
||||||
iopte += ((ent = iommu->alloc_info[cnum].next) << cnum);
|
start = 0;
|
||||||
flush_point = iommu->alloc_info[cnum].flush;
|
|
||||||
|
|
||||||
first = iopte;
|
|
||||||
cluster = NULL;
|
|
||||||
found = 0;
|
|
||||||
for (;;) {
|
|
||||||
if (iopte_val(*iopte) == 0UL) {
|
|
||||||
found++;
|
|
||||||
if (!cluster)
|
|
||||||
cluster = iopte;
|
|
||||||
} else {
|
|
||||||
/* Used cluster in the way */
|
|
||||||
cluster = NULL;
|
|
||||||
found = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (found == nent)
|
|
||||||
break;
|
|
||||||
|
|
||||||
iopte += (1 << cnum);
|
|
||||||
ent++;
|
|
||||||
if (iopte >= limit) {
|
|
||||||
iopte = (iommu->page_table + (cnum * CLUSTER_NPAGES));
|
|
||||||
ent = 0;
|
|
||||||
|
|
||||||
/* Multiple cluster allocations must not wrap */
|
|
||||||
cluster = NULL;
|
|
||||||
found = 0;
|
|
||||||
}
|
|
||||||
if (ent == flush_point)
|
|
||||||
__iommu_flushall(iommu);
|
__iommu_flushall(iommu);
|
||||||
if (iopte == first)
|
pass++;
|
||||||
goto bad;
|
goto again;
|
||||||
}
|
} else {
|
||||||
|
/* Scanned the whole thing, give up. */
|
||||||
/* ent/iopte points to the last cluster entry we're going to use,
|
return -1;
|
||||||
* so save our place for the next allocation.
|
|
||||||
*/
|
|
||||||
if ((iopte + (1 << cnum)) >= limit)
|
|
||||||
ent = 0;
|
|
||||||
else
|
|
||||||
ent = ent + 1;
|
|
||||||
iommu->alloc_info[cnum].next = ent;
|
|
||||||
if (ent == flush_point)
|
|
||||||
__iommu_flushall(iommu);
|
|
||||||
|
|
||||||
/* I've got your streaming cluster right here buddy boy... */
|
|
||||||
return cluster;
|
|
||||||
|
|
||||||
bad:
|
|
||||||
printk(KERN_EMERG "sbus: alloc_streaming_cluster of npages(%ld) failed!\n",
|
|
||||||
npages);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void free_streaming_cluster(struct sbus_iommu *iommu, u32 base, unsigned long npages)
|
|
||||||
{
|
|
||||||
unsigned long cnum, ent, nent;
|
|
||||||
iopte_t *iopte;
|
|
||||||
|
|
||||||
cnum = 0;
|
|
||||||
nent = 1;
|
|
||||||
while ((1UL << cnum) < npages)
|
|
||||||
cnum++;
|
|
||||||
if(cnum >= NCLUSTERS) {
|
|
||||||
nent = 1UL << (cnum - NCLUSTERS);
|
|
||||||
cnum = NCLUSTERS - 1;
|
|
||||||
}
|
|
||||||
ent = (base & CLUSTER_MASK) >> (IO_PAGE_SHIFT + cnum);
|
|
||||||
iopte = iommu->page_table + ((base - MAP_BASE) >> IO_PAGE_SHIFT);
|
|
||||||
do {
|
|
||||||
iopte_val(*iopte) = 0UL;
|
|
||||||
iopte += 1 << cnum;
|
|
||||||
} while(--nent);
|
|
||||||
|
|
||||||
/* If the global flush might not have caught this entry,
|
|
||||||
* adjust the flush point such that we will flush before
|
|
||||||
* ever trying to reuse it.
|
|
||||||
*/
|
|
||||||
#define between(X,Y,Z) (((Z) - (Y)) >= ((X) - (Y)))
|
|
||||||
if (between(ent, iommu->alloc_info[cnum].next, iommu->alloc_info[cnum].flush))
|
|
||||||
iommu->alloc_info[cnum].flush = ent;
|
|
||||||
#undef between
|
|
||||||
}
|
|
||||||
|
|
||||||
/* We allocate consistent mappings from the end of cluster zero. */
|
|
||||||
static iopte_t *alloc_consistent_cluster(struct sbus_iommu *iommu, unsigned long npages)
|
|
||||||
{
|
|
||||||
iopte_t *iopte;
|
|
||||||
|
|
||||||
iopte = iommu->page_table + (1 * CLUSTER_NPAGES);
|
|
||||||
while (iopte > iommu->page_table) {
|
|
||||||
iopte--;
|
|
||||||
if (!(iopte_val(*iopte) & IOPTE_VALID)) {
|
|
||||||
unsigned long tmp = npages;
|
|
||||||
|
|
||||||
while (--tmp) {
|
|
||||||
iopte--;
|
|
||||||
if (iopte_val(*iopte) & IOPTE_VALID)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (tmp == 0) {
|
|
||||||
u32 entry = (iopte - iommu->page_table);
|
|
||||||
|
|
||||||
if (entry < iommu->lowest_consistent_map)
|
|
||||||
iommu->lowest_consistent_map = entry;
|
|
||||||
return iopte;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void free_consistent_cluster(struct sbus_iommu *iommu, u32 base, unsigned long npages)
|
for (i = n; i < end; i++) {
|
||||||
{
|
if (test_bit(i, arena->map)) {
|
||||||
iopte_t *iopte = iommu->page_table + ((base - MAP_BASE) >> IO_PAGE_SHIFT);
|
start = i + 1;
|
||||||
|
goto again;
|
||||||
if ((iopte - iommu->page_table) == iommu->lowest_consistent_map) {
|
|
||||||
iopte_t *walk = iopte + npages;
|
|
||||||
iopte_t *limit;
|
|
||||||
|
|
||||||
limit = iommu->page_table + CLUSTER_NPAGES;
|
|
||||||
while (walk < limit) {
|
|
||||||
if (iopte_val(*walk) != 0UL)
|
|
||||||
break;
|
|
||||||
walk++;
|
|
||||||
}
|
}
|
||||||
iommu->lowest_consistent_map =
|
|
||||||
(walk - iommu->page_table);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
while (npages--)
|
for (i = n; i < end; i++)
|
||||||
*iopte++ = __iopte(0UL);
|
__set_bit(i, arena->map);
|
||||||
|
|
||||||
|
arena->hint = end;
|
||||||
|
|
||||||
|
return n;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void sbus_arena_free(struct sbus_iommu_arena *arena, unsigned long base, unsigned long npages)
|
||||||
|
{
|
||||||
|
unsigned long i;
|
||||||
|
|
||||||
|
for (i = base; i < (base + npages); i++)
|
||||||
|
__clear_bit(i, arena->map);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void sbus_iommu_table_init(struct sbus_iommu *iommu, unsigned int tsbsize)
|
||||||
|
{
|
||||||
|
unsigned long tsbbase, order, sz, num_tsb_entries;
|
||||||
|
|
||||||
|
num_tsb_entries = tsbsize / sizeof(iopte_t);
|
||||||
|
|
||||||
|
/* Setup initial software IOMMU state. */
|
||||||
|
spin_lock_init(&iommu->lock);
|
||||||
|
|
||||||
|
/* Allocate and initialize the free area map. */
|
||||||
|
sz = num_tsb_entries / 8;
|
||||||
|
sz = (sz + 7UL) & ~7UL;
|
||||||
|
iommu->arena.map = kzalloc(sz, GFP_KERNEL);
|
||||||
|
if (!iommu->arena.map) {
|
||||||
|
prom_printf("PCI_IOMMU: Error, kmalloc(arena.map) failed.\n");
|
||||||
|
prom_halt();
|
||||||
|
}
|
||||||
|
iommu->arena.limit = num_tsb_entries;
|
||||||
|
|
||||||
|
/* Now allocate and setup the IOMMU page table itself. */
|
||||||
|
order = get_order(tsbsize);
|
||||||
|
tsbbase = __get_free_pages(GFP_KERNEL, order);
|
||||||
|
if (!tsbbase) {
|
||||||
|
prom_printf("IOMMU: Error, gfp(tsb) failed.\n");
|
||||||
|
prom_halt();
|
||||||
|
}
|
||||||
|
iommu->page_table = (iopte_t *)tsbbase;
|
||||||
|
memset(iommu->page_table, 0, tsbsize);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline iopte_t *alloc_npages(struct sbus_iommu *iommu, unsigned long npages)
|
||||||
|
{
|
||||||
|
long entry;
|
||||||
|
|
||||||
|
entry = sbus_arena_alloc(iommu, npages);
|
||||||
|
if (unlikely(entry < 0))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
return iommu->page_table + entry;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void free_npages(struct sbus_iommu *iommu, dma_addr_t base, unsigned long npages)
|
||||||
|
{
|
||||||
|
sbus_arena_free(&iommu->arena, base >> IO_PAGE_SHIFT, npages);
|
||||||
}
|
}
|
||||||
|
|
||||||
void *sbus_alloc_consistent(struct sbus_dev *sdev, size_t size, dma_addr_t *dvma_addr)
|
void *sbus_alloc_consistent(struct sbus_dev *sdev, size_t size, dma_addr_t *dvma_addr)
|
||||||
{
|
{
|
||||||
unsigned long order, first_page, flags;
|
|
||||||
struct sbus_iommu *iommu;
|
struct sbus_iommu *iommu;
|
||||||
iopte_t *iopte;
|
iopte_t *iopte;
|
||||||
|
unsigned long flags, order, first_page;
|
||||||
void *ret;
|
void *ret;
|
||||||
int npages;
|
int npages;
|
||||||
|
|
||||||
if (size <= 0 || sdev == NULL || dvma_addr == NULL)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
size = IO_PAGE_ALIGN(size);
|
size = IO_PAGE_ALIGN(size);
|
||||||
order = get_order(size);
|
order = get_order(size);
|
||||||
if (order >= 10)
|
if (order >= 10)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
first_page = __get_free_pages(GFP_KERNEL|__GFP_COMP, order);
|
first_page = __get_free_pages(GFP_KERNEL|__GFP_COMP, order);
|
||||||
if (first_page == 0UL)
|
if (first_page == 0UL)
|
||||||
return NULL;
|
return NULL;
|
||||||
@ -336,108 +237,121 @@ void *sbus_alloc_consistent(struct sbus_dev *sdev, size_t size, dma_addr_t *dvma
|
|||||||
iommu = sdev->bus->iommu;
|
iommu = sdev->bus->iommu;
|
||||||
|
|
||||||
spin_lock_irqsave(&iommu->lock, flags);
|
spin_lock_irqsave(&iommu->lock, flags);
|
||||||
iopte = alloc_consistent_cluster(iommu, size >> IO_PAGE_SHIFT);
|
iopte = alloc_npages(iommu, size >> IO_PAGE_SHIFT);
|
||||||
if (iopte == NULL) {
|
spin_unlock_irqrestore(&iommu->lock, flags);
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
|
||||||
|
if (unlikely(iopte == NULL)) {
|
||||||
free_pages(first_page, order);
|
free_pages(first_page, order);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Ok, we're committed at this point. */
|
*dvma_addr = (MAP_BASE +
|
||||||
*dvma_addr = MAP_BASE + ((iopte - iommu->page_table) << IO_PAGE_SHIFT);
|
((iopte - iommu->page_table) << IO_PAGE_SHIFT));
|
||||||
ret = (void *) first_page;
|
ret = (void *) first_page;
|
||||||
npages = size >> IO_PAGE_SHIFT;
|
npages = size >> IO_PAGE_SHIFT;
|
||||||
|
first_page = __pa(first_page);
|
||||||
while (npages--) {
|
while (npages--) {
|
||||||
*iopte++ = __iopte(IOPTE_VALID | IOPTE_CACHE | IOPTE_WRITE |
|
iopte_val(*iopte) = (IOPTE_VALID | IOPTE_CACHE |
|
||||||
(__pa(first_page) & IOPTE_PAGE));
|
IOPTE_WRITE |
|
||||||
|
(first_page & IOPTE_PAGE));
|
||||||
|
iopte++;
|
||||||
first_page += IO_PAGE_SIZE;
|
first_page += IO_PAGE_SIZE;
|
||||||
}
|
}
|
||||||
iommu_flush(iommu, *dvma_addr, size >> IO_PAGE_SHIFT);
|
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void sbus_free_consistent(struct sbus_dev *sdev, size_t size, void *cpu, dma_addr_t dvma)
|
void sbus_free_consistent(struct sbus_dev *sdev, size_t size, void *cpu, dma_addr_t dvma)
|
||||||
{
|
{
|
||||||
unsigned long order, npages;
|
|
||||||
struct sbus_iommu *iommu;
|
struct sbus_iommu *iommu;
|
||||||
|
iopte_t *iopte;
|
||||||
if (size <= 0 || sdev == NULL || cpu == NULL)
|
unsigned long flags, order, npages;
|
||||||
return;
|
|
||||||
|
|
||||||
npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT;
|
npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT;
|
||||||
iommu = sdev->bus->iommu;
|
iommu = sdev->bus->iommu;
|
||||||
|
iopte = iommu->page_table +
|
||||||
|
((dvma - MAP_BASE) >> IO_PAGE_SHIFT);
|
||||||
|
|
||||||
spin_lock_irq(&iommu->lock);
|
spin_lock_irqsave(&iommu->lock, flags);
|
||||||
free_consistent_cluster(iommu, dvma, npages);
|
|
||||||
iommu_flush(iommu, dvma, npages);
|
free_npages(iommu, dvma - MAP_BASE, npages);
|
||||||
spin_unlock_irq(&iommu->lock);
|
|
||||||
|
spin_unlock_irqrestore(&iommu->lock, flags);
|
||||||
|
|
||||||
order = get_order(size);
|
order = get_order(size);
|
||||||
if (order < 10)
|
if (order < 10)
|
||||||
free_pages((unsigned long)cpu, order);
|
free_pages((unsigned long)cpu, order);
|
||||||
}
|
}
|
||||||
|
|
||||||
dma_addr_t sbus_map_single(struct sbus_dev *sdev, void *ptr, size_t size, int dir)
|
dma_addr_t sbus_map_single(struct sbus_dev *sdev, void *ptr, size_t sz, int direction)
|
||||||
{
|
{
|
||||||
struct sbus_iommu *iommu = sdev->bus->iommu;
|
struct sbus_iommu *iommu;
|
||||||
unsigned long npages, pbase, flags;
|
iopte_t *base;
|
||||||
iopte_t *iopte;
|
unsigned long flags, npages, oaddr;
|
||||||
u32 dma_base, offset;
|
unsigned long i, base_paddr;
|
||||||
unsigned long iopte_bits;
|
u32 bus_addr, ret;
|
||||||
|
unsigned long iopte_protection;
|
||||||
|
|
||||||
if (dir == SBUS_DMA_NONE)
|
iommu = sdev->bus->iommu;
|
||||||
|
|
||||||
|
if (unlikely(direction == SBUS_DMA_NONE))
|
||||||
BUG();
|
BUG();
|
||||||
|
|
||||||
pbase = (unsigned long) ptr;
|
oaddr = (unsigned long)ptr;
|
||||||
offset = (u32) (pbase & ~IO_PAGE_MASK);
|
npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK);
|
||||||
size = (IO_PAGE_ALIGN(pbase + size) - (pbase & IO_PAGE_MASK));
|
npages >>= IO_PAGE_SHIFT;
|
||||||
pbase = (unsigned long) __pa(pbase & IO_PAGE_MASK);
|
|
||||||
|
|
||||||
spin_lock_irqsave(&iommu->lock, flags);
|
spin_lock_irqsave(&iommu->lock, flags);
|
||||||
npages = size >> IO_PAGE_SHIFT;
|
base = alloc_npages(iommu, npages);
|
||||||
iopte = alloc_streaming_cluster(iommu, npages);
|
|
||||||
if (iopte == NULL)
|
|
||||||
goto bad;
|
|
||||||
dma_base = MAP_BASE + ((iopte - iommu->page_table) << IO_PAGE_SHIFT);
|
|
||||||
npages = size >> IO_PAGE_SHIFT;
|
|
||||||
iopte_bits = IOPTE_VALID | IOPTE_STBUF | IOPTE_CACHE;
|
|
||||||
if (dir != SBUS_DMA_TODEVICE)
|
|
||||||
iopte_bits |= IOPTE_WRITE;
|
|
||||||
while (npages--) {
|
|
||||||
*iopte++ = __iopte(iopte_bits | (pbase & IOPTE_PAGE));
|
|
||||||
pbase += IO_PAGE_SIZE;
|
|
||||||
}
|
|
||||||
npages = size >> IO_PAGE_SHIFT;
|
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
spin_unlock_irqrestore(&iommu->lock, flags);
|
||||||
|
|
||||||
return (dma_base | offset);
|
if (unlikely(!base))
|
||||||
|
BUG();
|
||||||
|
|
||||||
bad:
|
bus_addr = (MAP_BASE +
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
((base - iommu->page_table) << IO_PAGE_SHIFT));
|
||||||
BUG();
|
ret = bus_addr | (oaddr & ~IO_PAGE_MASK);
|
||||||
return 0;
|
base_paddr = __pa(oaddr & IO_PAGE_MASK);
|
||||||
|
|
||||||
|
iopte_protection = IOPTE_VALID | IOPTE_STBUF | IOPTE_CACHE;
|
||||||
|
if (direction != SBUS_DMA_TODEVICE)
|
||||||
|
iopte_protection |= IOPTE_WRITE;
|
||||||
|
|
||||||
|
for (i = 0; i < npages; i++, base++, base_paddr += IO_PAGE_SIZE)
|
||||||
|
iopte_val(*base) = iopte_protection | base_paddr;
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void sbus_unmap_single(struct sbus_dev *sdev, dma_addr_t dma_addr, size_t size, int direction)
|
void sbus_unmap_single(struct sbus_dev *sdev, dma_addr_t bus_addr, size_t sz, int direction)
|
||||||
{
|
{
|
||||||
struct sbus_iommu *iommu = sdev->bus->iommu;
|
struct sbus_iommu *iommu = sdev->bus->iommu;
|
||||||
u32 dma_base = dma_addr & IO_PAGE_MASK;
|
iopte_t *base;
|
||||||
unsigned long flags;
|
unsigned long flags, npages, i;
|
||||||
|
|
||||||
size = (IO_PAGE_ALIGN(dma_addr + size) - dma_base);
|
if (unlikely(direction == SBUS_DMA_NONE))
|
||||||
|
BUG();
|
||||||
|
|
||||||
|
npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
|
||||||
|
npages >>= IO_PAGE_SHIFT;
|
||||||
|
base = iommu->page_table +
|
||||||
|
((bus_addr - MAP_BASE) >> IO_PAGE_SHIFT);
|
||||||
|
|
||||||
|
bus_addr &= IO_PAGE_MASK;
|
||||||
|
|
||||||
spin_lock_irqsave(&iommu->lock, flags);
|
spin_lock_irqsave(&iommu->lock, flags);
|
||||||
free_streaming_cluster(iommu, dma_base, size >> IO_PAGE_SHIFT);
|
sbus_strbuf_flush(iommu, bus_addr, npages, direction);
|
||||||
sbus_strbuf_flush(iommu, dma_base, size >> IO_PAGE_SHIFT, direction);
|
for (i = 0; i < npages; i++)
|
||||||
|
iopte_val(base[i]) = 0UL;
|
||||||
|
free_npages(iommu, bus_addr - MAP_BASE, npages);
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
spin_unlock_irqrestore(&iommu->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define SG_ENT_PHYS_ADDRESS(SG) \
|
#define SG_ENT_PHYS_ADDRESS(SG) \
|
||||||
(__pa(page_address((SG)->page)) + (SG)->offset)
|
(__pa(page_address((SG)->page)) + (SG)->offset)
|
||||||
|
|
||||||
static inline void fill_sg(iopte_t *iopte, struct scatterlist *sg, int nused, int nelems, unsigned long iopte_bits)
|
static inline void fill_sg(iopte_t *iopte, struct scatterlist *sg,
|
||||||
|
int nused, int nelems, unsigned long iopte_protection)
|
||||||
{
|
{
|
||||||
struct scatterlist *dma_sg = sg;
|
struct scatterlist *dma_sg = sg;
|
||||||
struct scatterlist *sg_end = sg + nelems;
|
struct scatterlist *sg_end = sg + nelems;
|
||||||
@ -462,7 +376,7 @@ static inline void fill_sg(iopte_t *iopte, struct scatterlist *sg, int nused, in
|
|||||||
for (;;) {
|
for (;;) {
|
||||||
unsigned long tmp;
|
unsigned long tmp;
|
||||||
|
|
||||||
tmp = (unsigned long) SG_ENT_PHYS_ADDRESS(sg);
|
tmp = SG_ENT_PHYS_ADDRESS(sg);
|
||||||
len = sg->length;
|
len = sg->length;
|
||||||
if (((tmp ^ pteval) >> IO_PAGE_SHIFT) != 0UL) {
|
if (((tmp ^ pteval) >> IO_PAGE_SHIFT) != 0UL) {
|
||||||
pteval = tmp & IO_PAGE_MASK;
|
pteval = tmp & IO_PAGE_MASK;
|
||||||
@ -478,7 +392,7 @@ static inline void fill_sg(iopte_t *iopte, struct scatterlist *sg, int nused, in
|
|||||||
sg++;
|
sg++;
|
||||||
}
|
}
|
||||||
|
|
||||||
pteval = ((pteval & IOPTE_PAGE) | iopte_bits);
|
pteval = iopte_protection | (pteval & IOPTE_PAGE);
|
||||||
while (len > 0) {
|
while (len > 0) {
|
||||||
*iopte++ = __iopte(pteval);
|
*iopte++ = __iopte(pteval);
|
||||||
pteval += IO_PAGE_SIZE;
|
pteval += IO_PAGE_SIZE;
|
||||||
@ -509,103 +423,111 @@ static inline void fill_sg(iopte_t *iopte, struct scatterlist *sg, int nused, in
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int sbus_map_sg(struct sbus_dev *sdev, struct scatterlist *sg, int nents, int dir)
|
int sbus_map_sg(struct sbus_dev *sdev, struct scatterlist *sglist, int nelems, int direction)
|
||||||
{
|
{
|
||||||
struct sbus_iommu *iommu = sdev->bus->iommu;
|
struct sbus_iommu *iommu;
|
||||||
unsigned long flags, npages;
|
unsigned long flags, npages, iopte_protection;
|
||||||
iopte_t *iopte;
|
iopte_t *base;
|
||||||
u32 dma_base;
|
u32 dma_base;
|
||||||
struct scatterlist *sgtmp;
|
struct scatterlist *sgtmp;
|
||||||
int used;
|
int used;
|
||||||
unsigned long iopte_bits;
|
|
||||||
|
|
||||||
if (dir == SBUS_DMA_NONE)
|
|
||||||
BUG();
|
|
||||||
|
|
||||||
/* Fast path single entry scatterlists. */
|
/* Fast path single entry scatterlists. */
|
||||||
if (nents == 1) {
|
if (nelems == 1) {
|
||||||
sg->dma_address =
|
sglist->dma_address =
|
||||||
sbus_map_single(sdev,
|
sbus_map_single(sdev,
|
||||||
(page_address(sg->page) + sg->offset),
|
(page_address(sglist->page) + sglist->offset),
|
||||||
sg->length, dir);
|
sglist->length, direction);
|
||||||
sg->dma_length = sg->length;
|
sglist->dma_length = sglist->length;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
npages = prepare_sg(sg, nents);
|
iommu = sdev->bus->iommu;
|
||||||
|
|
||||||
|
if (unlikely(direction == SBUS_DMA_NONE))
|
||||||
|
BUG();
|
||||||
|
|
||||||
|
npages = prepare_sg(sglist, nelems);
|
||||||
|
|
||||||
spin_lock_irqsave(&iommu->lock, flags);
|
spin_lock_irqsave(&iommu->lock, flags);
|
||||||
iopte = alloc_streaming_cluster(iommu, npages);
|
base = alloc_npages(iommu, npages);
|
||||||
if (iopte == NULL)
|
spin_unlock_irqrestore(&iommu->lock, flags);
|
||||||
goto bad;
|
|
||||||
dma_base = MAP_BASE + ((iopte - iommu->page_table) << IO_PAGE_SHIFT);
|
if (unlikely(base == NULL))
|
||||||
|
BUG();
|
||||||
|
|
||||||
|
dma_base = MAP_BASE +
|
||||||
|
((base - iommu->page_table) << IO_PAGE_SHIFT);
|
||||||
|
|
||||||
/* Normalize DVMA addresses. */
|
/* Normalize DVMA addresses. */
|
||||||
sgtmp = sg;
|
used = nelems;
|
||||||
used = nents;
|
|
||||||
|
|
||||||
|
sgtmp = sglist;
|
||||||
while (used && sgtmp->dma_length) {
|
while (used && sgtmp->dma_length) {
|
||||||
sgtmp->dma_address += dma_base;
|
sgtmp->dma_address += dma_base;
|
||||||
sgtmp++;
|
sgtmp++;
|
||||||
used--;
|
used--;
|
||||||
}
|
}
|
||||||
used = nents - used;
|
used = nelems - used;
|
||||||
|
|
||||||
iopte_bits = IOPTE_VALID | IOPTE_STBUF | IOPTE_CACHE;
|
iopte_protection = IOPTE_VALID | IOPTE_STBUF | IOPTE_CACHE;
|
||||||
if (dir != SBUS_DMA_TODEVICE)
|
if (direction != SBUS_DMA_TODEVICE)
|
||||||
iopte_bits |= IOPTE_WRITE;
|
iopte_protection |= IOPTE_WRITE;
|
||||||
|
|
||||||
|
fill_sg(base, sglist, used, nelems, iopte_protection);
|
||||||
|
|
||||||
fill_sg(iopte, sg, used, nents, iopte_bits);
|
|
||||||
#ifdef VERIFY_SG
|
#ifdef VERIFY_SG
|
||||||
verify_sglist(sg, nents, iopte, npages);
|
verify_sglist(sglist, nelems, base, npages);
|
||||||
#endif
|
#endif
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
|
||||||
|
|
||||||
return used;
|
return used;
|
||||||
|
|
||||||
bad:
|
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
|
||||||
BUG();
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void sbus_unmap_sg(struct sbus_dev *sdev, struct scatterlist *sg, int nents, int direction)
|
void sbus_unmap_sg(struct sbus_dev *sdev, struct scatterlist *sglist, int nelems, int direction)
|
||||||
{
|
{
|
||||||
unsigned long size, flags;
|
|
||||||
struct sbus_iommu *iommu;
|
struct sbus_iommu *iommu;
|
||||||
u32 dvma_base;
|
iopte_t *base;
|
||||||
int i;
|
unsigned long flags, i, npages;
|
||||||
|
u32 bus_addr;
|
||||||
|
|
||||||
/* Fast path single entry scatterlists. */
|
if (unlikely(direction == SBUS_DMA_NONE))
|
||||||
if (nents == 1) {
|
BUG();
|
||||||
sbus_unmap_single(sdev, sg->dma_address, sg->dma_length, direction);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
dvma_base = sg[0].dma_address & IO_PAGE_MASK;
|
|
||||||
for (i = 0; i < nents; i++) {
|
|
||||||
if (sg[i].dma_length == 0)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
i--;
|
|
||||||
size = IO_PAGE_ALIGN(sg[i].dma_address + sg[i].dma_length) - dvma_base;
|
|
||||||
|
|
||||||
iommu = sdev->bus->iommu;
|
iommu = sdev->bus->iommu;
|
||||||
|
|
||||||
|
bus_addr = sglist->dma_address & IO_PAGE_MASK;
|
||||||
|
|
||||||
|
for (i = 1; i < nelems; i++)
|
||||||
|
if (sglist[i].dma_length == 0)
|
||||||
|
break;
|
||||||
|
i--;
|
||||||
|
npages = (IO_PAGE_ALIGN(sglist[i].dma_address + sglist[i].dma_length) -
|
||||||
|
bus_addr) >> IO_PAGE_SHIFT;
|
||||||
|
|
||||||
|
base = iommu->page_table +
|
||||||
|
((bus_addr - MAP_BASE) >> IO_PAGE_SHIFT);
|
||||||
|
|
||||||
spin_lock_irqsave(&iommu->lock, flags);
|
spin_lock_irqsave(&iommu->lock, flags);
|
||||||
free_streaming_cluster(iommu, dvma_base, size >> IO_PAGE_SHIFT);
|
sbus_strbuf_flush(iommu, bus_addr, npages, direction);
|
||||||
sbus_strbuf_flush(iommu, dvma_base, size >> IO_PAGE_SHIFT, direction);
|
for (i = 0; i < npages; i++)
|
||||||
|
iopte_val(base[i]) = 0UL;
|
||||||
|
free_npages(iommu, bus_addr - MAP_BASE, npages);
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
spin_unlock_irqrestore(&iommu->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
void sbus_dma_sync_single_for_cpu(struct sbus_dev *sdev, dma_addr_t base, size_t size, int direction)
|
void sbus_dma_sync_single_for_cpu(struct sbus_dev *sdev, dma_addr_t bus_addr, size_t sz, int direction)
|
||||||
{
|
{
|
||||||
struct sbus_iommu *iommu = sdev->bus->iommu;
|
struct sbus_iommu *iommu;
|
||||||
unsigned long flags;
|
unsigned long flags, npages;
|
||||||
|
|
||||||
size = (IO_PAGE_ALIGN(base + size) - (base & IO_PAGE_MASK));
|
iommu = sdev->bus->iommu;
|
||||||
|
|
||||||
|
npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
|
||||||
|
npages >>= IO_PAGE_SHIFT;
|
||||||
|
bus_addr &= IO_PAGE_MASK;
|
||||||
|
|
||||||
spin_lock_irqsave(&iommu->lock, flags);
|
spin_lock_irqsave(&iommu->lock, flags);
|
||||||
sbus_strbuf_flush(iommu, base & IO_PAGE_MASK, size >> IO_PAGE_SHIFT, direction);
|
sbus_strbuf_flush(iommu, bus_addr, npages, direction);
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
spin_unlock_irqrestore(&iommu->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -613,23 +535,25 @@ void sbus_dma_sync_single_for_device(struct sbus_dev *sdev, dma_addr_t base, siz
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void sbus_dma_sync_sg_for_cpu(struct sbus_dev *sdev, struct scatterlist *sg, int nents, int direction)
|
void sbus_dma_sync_sg_for_cpu(struct sbus_dev *sdev, struct scatterlist *sglist, int nelems, int direction)
|
||||||
{
|
{
|
||||||
struct sbus_iommu *iommu = sdev->bus->iommu;
|
struct sbus_iommu *iommu;
|
||||||
unsigned long flags, size;
|
unsigned long flags, npages, i;
|
||||||
u32 base;
|
u32 bus_addr;
|
||||||
int i;
|
|
||||||
|
|
||||||
base = sg[0].dma_address & IO_PAGE_MASK;
|
iommu = sdev->bus->iommu;
|
||||||
for (i = 0; i < nents; i++) {
|
|
||||||
if (sg[i].dma_length == 0)
|
bus_addr = sglist[0].dma_address & IO_PAGE_MASK;
|
||||||
|
for (i = 0; i < nelems; i++) {
|
||||||
|
if (!sglist[i].dma_length)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
i--;
|
i--;
|
||||||
size = IO_PAGE_ALIGN(sg[i].dma_address + sg[i].dma_length) - base;
|
npages = (IO_PAGE_ALIGN(sglist[i].dma_address + sglist[i].dma_length)
|
||||||
|
- bus_addr) >> IO_PAGE_SHIFT;
|
||||||
|
|
||||||
spin_lock_irqsave(&iommu->lock, flags);
|
spin_lock_irqsave(&iommu->lock, flags);
|
||||||
sbus_strbuf_flush(iommu, base, size >> IO_PAGE_SHIFT, direction);
|
sbus_strbuf_flush(iommu, bus_addr, npages, direction);
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
spin_unlock_irqrestore(&iommu->lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1104,7 +1028,7 @@ static void __init sbus_iommu_init(int __node, struct sbus_bus *sbus)
|
|||||||
struct linux_prom64_registers *pr;
|
struct linux_prom64_registers *pr;
|
||||||
struct device_node *dp;
|
struct device_node *dp;
|
||||||
struct sbus_iommu *iommu;
|
struct sbus_iommu *iommu;
|
||||||
unsigned long regs, tsb_base;
|
unsigned long regs;
|
||||||
u64 control;
|
u64 control;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -1132,14 +1056,6 @@ static void __init sbus_iommu_init(int __node, struct sbus_bus *sbus)
|
|||||||
|
|
||||||
memset(iommu, 0, sizeof(*iommu));
|
memset(iommu, 0, sizeof(*iommu));
|
||||||
|
|
||||||
/* We start with no consistent mappings. */
|
|
||||||
iommu->lowest_consistent_map = CLUSTER_NPAGES;
|
|
||||||
|
|
||||||
for (i = 0; i < NCLUSTERS; i++) {
|
|
||||||
iommu->alloc_info[i].flush = 0;
|
|
||||||
iommu->alloc_info[i].next = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Setup spinlock. */
|
/* Setup spinlock. */
|
||||||
spin_lock_init(&iommu->lock);
|
spin_lock_init(&iommu->lock);
|
||||||
|
|
||||||
@ -1159,25 +1075,13 @@ static void __init sbus_iommu_init(int __node, struct sbus_bus *sbus)
|
|||||||
sbus->portid, regs);
|
sbus->portid, regs);
|
||||||
|
|
||||||
/* Setup for TSB_SIZE=7, TBW_SIZE=0, MMU_DE=1, MMU_EN=1 */
|
/* Setup for TSB_SIZE=7, TBW_SIZE=0, MMU_DE=1, MMU_EN=1 */
|
||||||
|
sbus_iommu_table_init(iommu, IO_TSB_SIZE);
|
||||||
|
|
||||||
control = upa_readq(iommu->iommu_regs + IOMMU_CONTROL);
|
control = upa_readq(iommu->iommu_regs + IOMMU_CONTROL);
|
||||||
control = ((7UL << 16UL) |
|
control = ((7UL << 16UL) |
|
||||||
(0UL << 2UL) |
|
(0UL << 2UL) |
|
||||||
(1UL << 1UL) |
|
(1UL << 1UL) |
|
||||||
(1UL << 0UL));
|
(1UL << 0UL));
|
||||||
|
|
||||||
/* Using the above configuration we need 1MB iommu page
|
|
||||||
* table (128K ioptes * 8 bytes per iopte). This is
|
|
||||||
* page order 7 on UltraSparc.
|
|
||||||
*/
|
|
||||||
tsb_base = __get_free_pages(GFP_ATOMIC, get_order(IO_TSB_SIZE));
|
|
||||||
if (tsb_base == 0UL) {
|
|
||||||
prom_printf("sbus_iommu_init: Fatal error, cannot alloc TSB table.\n");
|
|
||||||
prom_halt();
|
|
||||||
}
|
|
||||||
|
|
||||||
iommu->page_table = (iopte_t *) tsb_base;
|
|
||||||
memset(iommu->page_table, 0, IO_TSB_SIZE);
|
|
||||||
|
|
||||||
upa_writeq(control, iommu->iommu_regs + IOMMU_CONTROL);
|
upa_writeq(control, iommu->iommu_regs + IOMMU_CONTROL);
|
||||||
|
|
||||||
/* Clean out any cruft in the IOMMU using
|
/* Clean out any cruft in the IOMMU using
|
||||||
@ -1195,7 +1099,7 @@ static void __init sbus_iommu_init(int __node, struct sbus_bus *sbus)
|
|||||||
upa_readq(iommu->sbus_control_reg);
|
upa_readq(iommu->sbus_control_reg);
|
||||||
|
|
||||||
/* Give the TSB to SYSIO. */
|
/* Give the TSB to SYSIO. */
|
||||||
upa_writeq(__pa(tsb_base), iommu->iommu_regs + IOMMU_TSBBASE);
|
upa_writeq(__pa(iommu->page_table), iommu->iommu_regs + IOMMU_TSBBASE);
|
||||||
|
|
||||||
/* Setup streaming buffer, DE=1 SB_EN=1 */
|
/* Setup streaming buffer, DE=1 SB_EN=1 */
|
||||||
control = (1UL << 1UL) | (1UL << 0UL);
|
control = (1UL << 1UL) | (1UL << 0UL);
|
||||||
|
@ -91,7 +91,6 @@ SIGN1(sys32_select, compat_sys_select, %o0)
|
|||||||
SIGN1(sys32_mkdir, sys_mkdir, %o1)
|
SIGN1(sys32_mkdir, sys_mkdir, %o1)
|
||||||
SIGN3(sys32_futex, compat_sys_futex, %o1, %o2, %o5)
|
SIGN3(sys32_futex, compat_sys_futex, %o1, %o2, %o5)
|
||||||
SIGN1(sys32_sysfs, compat_sys_sysfs, %o0)
|
SIGN1(sys32_sysfs, compat_sys_sysfs, %o0)
|
||||||
SIGN3(sys32_ipc, compat_sys_ipc, %o1, %o2, %o3)
|
|
||||||
SIGN2(sys32_sendfile, compat_sys_sendfile, %o0, %o1)
|
SIGN2(sys32_sendfile, compat_sys_sendfile, %o0, %o1)
|
||||||
SIGN2(sys32_sendfile64, compat_sys_sendfile64, %o0, %o1)
|
SIGN2(sys32_sendfile64, compat_sys_sendfile64, %o0, %o1)
|
||||||
SIGN1(sys32_prctl, sys_prctl, %o0)
|
SIGN1(sys32_prctl, sys_prctl, %o0)
|
||||||
|
@ -871,7 +871,7 @@ asmlinkage s32 sunos_sysconf (int name)
|
|||||||
ret = ARG_MAX;
|
ret = ARG_MAX;
|
||||||
break;
|
break;
|
||||||
case _SC_CHILD_MAX:
|
case _SC_CHILD_MAX:
|
||||||
ret = -1; /* no limit */
|
ret = current->signal->rlim[RLIMIT_NPROC].rlim_cur;
|
||||||
break;
|
break;
|
||||||
case _SC_CLK_TCK:
|
case _SC_CLK_TCK:
|
||||||
ret = HZ;
|
ret = HZ;
|
||||||
@ -880,7 +880,7 @@ asmlinkage s32 sunos_sysconf (int name)
|
|||||||
ret = NGROUPS_MAX;
|
ret = NGROUPS_MAX;
|
||||||
break;
|
break;
|
||||||
case _SC_OPEN_MAX:
|
case _SC_OPEN_MAX:
|
||||||
ret = OPEN_MAX;
|
ret = current->signal->rlim[RLIMIT_NOFILE].rlim_cur;
|
||||||
break;
|
break;
|
||||||
case _SC_JOB_CONTROL:
|
case _SC_JOB_CONTROL:
|
||||||
ret = 1; /* yes, we do support job control */
|
ret = 1; /* yes, we do support job control */
|
||||||
|
@ -62,7 +62,7 @@ sys_call_table32:
|
|||||||
/*200*/ .word sys32_ssetmask, sys_sigsuspend, compat_sys_newlstat, sys_uselib, compat_sys_old_readdir
|
/*200*/ .word sys32_ssetmask, sys_sigsuspend, compat_sys_newlstat, sys_uselib, compat_sys_old_readdir
|
||||||
.word sys32_readahead, sys32_socketcall, sys32_syslog, sys32_lookup_dcookie, sys32_fadvise64
|
.word sys32_readahead, sys32_socketcall, sys32_syslog, sys32_lookup_dcookie, sys32_fadvise64
|
||||||
/*210*/ .word sys32_fadvise64_64, sys32_tgkill, sys32_waitpid, sys_swapoff, compat_sys_sysinfo
|
/*210*/ .word sys32_fadvise64_64, sys32_tgkill, sys32_waitpid, sys_swapoff, compat_sys_sysinfo
|
||||||
.word sys32_ipc, sys32_sigreturn, sys_clone, sys32_ioprio_get, compat_sys_adjtimex
|
.word compat_sys_ipc, sys32_sigreturn, sys_clone, sys32_ioprio_get, compat_sys_adjtimex
|
||||||
/*220*/ .word sys32_sigprocmask, sys_ni_syscall, sys32_delete_module, sys_ni_syscall, sys32_getpgid
|
/*220*/ .word sys32_sigprocmask, sys_ni_syscall, sys32_delete_module, sys_ni_syscall, sys32_getpgid
|
||||||
.word sys32_bdflush, sys32_sysfs, sys_nis_syscall, sys32_setfsuid16, sys32_setfsgid16
|
.word sys32_bdflush, sys32_sysfs, sys_nis_syscall, sys32_setfsuid16, sys32_setfsgid16
|
||||||
/*230*/ .word sys32_select, compat_sys_time, sys32_splice, compat_sys_stime, compat_sys_statfs64
|
/*230*/ .word sys32_select, compat_sys_time, sys32_splice, compat_sys_stime, compat_sys_statfs64
|
||||||
|
@ -363,8 +363,10 @@ asmlinkage int solaris_sysconf(int id)
|
|||||||
{
|
{
|
||||||
switch (id) {
|
switch (id) {
|
||||||
case SOLARIS_CONFIG_NGROUPS: return NGROUPS_MAX;
|
case SOLARIS_CONFIG_NGROUPS: return NGROUPS_MAX;
|
||||||
case SOLARIS_CONFIG_CHILD_MAX: return -1; /* no limit */
|
case SOLARIS_CONFIG_CHILD_MAX:
|
||||||
case SOLARIS_CONFIG_OPEN_FILES: return OPEN_MAX;
|
return current->signal->rlim[RLIMIT_NPROC].rlim_cur;
|
||||||
|
case SOLARIS_CONFIG_OPEN_FILES:
|
||||||
|
return current->signal->rlim[RLIMIT_NOFILE].rlim_cur;
|
||||||
case SOLARIS_CONFIG_POSIX_VER: return 199309;
|
case SOLARIS_CONFIG_POSIX_VER: return 199309;
|
||||||
case SOLARIS_CONFIG_PAGESIZE: return PAGE_SIZE;
|
case SOLARIS_CONFIG_PAGESIZE: return PAGE_SIZE;
|
||||||
case SOLARIS_CONFIG_XOPEN_VER: return 3;
|
case SOLARIS_CONFIG_XOPEN_VER: return 3;
|
||||||
|
@ -452,6 +452,8 @@ union svc_pktinfo_u {
|
|||||||
struct in_pktinfo pkti;
|
struct in_pktinfo pkti;
|
||||||
struct in6_pktinfo pkti6;
|
struct in6_pktinfo pkti6;
|
||||||
};
|
};
|
||||||
|
#define SVC_PKTINFO_SPACE \
|
||||||
|
CMSG_SPACE(sizeof(union svc_pktinfo_u))
|
||||||
|
|
||||||
static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
|
static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
|
||||||
{
|
{
|
||||||
@ -491,8 +493,11 @@ svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
|
|||||||
struct svc_sock *svsk = rqstp->rq_sock;
|
struct svc_sock *svsk = rqstp->rq_sock;
|
||||||
struct socket *sock = svsk->sk_sock;
|
struct socket *sock = svsk->sk_sock;
|
||||||
int slen;
|
int slen;
|
||||||
char buffer[CMSG_SPACE(sizeof(union svc_pktinfo_u))];
|
union {
|
||||||
struct cmsghdr *cmh = (struct cmsghdr *)buffer;
|
struct cmsghdr hdr;
|
||||||
|
long all[SVC_PKTINFO_SPACE / sizeof(long)];
|
||||||
|
} buffer;
|
||||||
|
struct cmsghdr *cmh = &buffer.hdr;
|
||||||
int len = 0;
|
int len = 0;
|
||||||
int result;
|
int result;
|
||||||
int size;
|
int size;
|
||||||
@ -745,8 +750,11 @@ svc_udp_recvfrom(struct svc_rqst *rqstp)
|
|||||||
struct svc_sock *svsk = rqstp->rq_sock;
|
struct svc_sock *svsk = rqstp->rq_sock;
|
||||||
struct svc_serv *serv = svsk->sk_server;
|
struct svc_serv *serv = svsk->sk_server;
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
char buffer[CMSG_SPACE(sizeof(union svc_pktinfo_u))];
|
union {
|
||||||
struct cmsghdr *cmh = (struct cmsghdr *)buffer;
|
struct cmsghdr hdr;
|
||||||
|
long all[SVC_PKTINFO_SPACE / sizeof(long)];
|
||||||
|
} buffer;
|
||||||
|
struct cmsghdr *cmh = &buffer.hdr;
|
||||||
int err, len;
|
int err, len;
|
||||||
struct msghdr msg = {
|
struct msghdr msg = {
|
||||||
.msg_name = svc_addr(rqstp),
|
.msg_name = svc_addr(rqstp),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user