Merge branch 'parisc-4.5-1' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux
Pull parsic updates from Helge Deller: "This patchset includes two major fixes which are both scheduled for stable: First, __ARCH_SI_PREAMBLE_SIZE was defined with a wrong value. Second, huge page pte and TLB changes needed protection with a spinlock. Other than that there are just some trivial optimizations and cleanups" * 'parisc-4.5-1' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux: parisc: Protect huge page pte changes with spinlocks parisc: Imporove debug info about space registers and TLB configuration parisc: Drop parisc-specific NSIGTRAP define parisc: Fix __ARCH_SI_PREAMBLE_SIZE parisc: Reduce overhead of parisc_requires_coherency() parisc: Initialize PCI bridge cache line and default latency
This commit is contained in:
@@ -172,6 +172,24 @@ parisc_cache_init(void)
|
||||
cache_info.ic_count,
|
||||
cache_info.ic_loop);
|
||||
|
||||
printk("IT base 0x%lx stride 0x%lx count 0x%lx loop 0x%lx off_base 0x%lx off_stride 0x%lx off_count 0x%lx\n",
|
||||
cache_info.it_sp_base,
|
||||
cache_info.it_sp_stride,
|
||||
cache_info.it_sp_count,
|
||||
cache_info.it_loop,
|
||||
cache_info.it_off_base,
|
||||
cache_info.it_off_stride,
|
||||
cache_info.it_off_count);
|
||||
|
||||
printk("DT base 0x%lx stride 0x%lx count 0x%lx loop 0x%lx off_base 0x%lx off_stride 0x%lx off_count 0x%lx\n",
|
||||
cache_info.dt_sp_base,
|
||||
cache_info.dt_sp_stride,
|
||||
cache_info.dt_sp_count,
|
||||
cache_info.dt_loop,
|
||||
cache_info.dt_off_base,
|
||||
cache_info.dt_off_stride,
|
||||
cache_info.dt_off_count);
|
||||
|
||||
printk("ic_conf = 0x%lx alias %d blk %d line %d shift %d\n",
|
||||
*(unsigned long *) (&cache_info.ic_conf),
|
||||
cache_info.ic_conf.cc_alias,
|
||||
@@ -184,19 +202,19 @@ parisc_cache_init(void)
|
||||
cache_info.ic_conf.cc_cst,
|
||||
cache_info.ic_conf.cc_hv);
|
||||
|
||||
printk("D-TLB conf: sh %d page %d cst %d aid %d pad1 %d\n",
|
||||
printk("D-TLB conf: sh %d page %d cst %d aid %d sr %d\n",
|
||||
cache_info.dt_conf.tc_sh,
|
||||
cache_info.dt_conf.tc_page,
|
||||
cache_info.dt_conf.tc_cst,
|
||||
cache_info.dt_conf.tc_aid,
|
||||
cache_info.dt_conf.tc_pad1);
|
||||
cache_info.dt_conf.tc_sr);
|
||||
|
||||
printk("I-TLB conf: sh %d page %d cst %d aid %d pad1 %d\n",
|
||||
printk("I-TLB conf: sh %d page %d cst %d aid %d sr %d\n",
|
||||
cache_info.it_conf.tc_sh,
|
||||
cache_info.it_conf.tc_page,
|
||||
cache_info.it_conf.tc_cst,
|
||||
cache_info.it_conf.tc_aid,
|
||||
cache_info.it_conf.tc_pad1);
|
||||
cache_info.it_conf.tc_sr);
|
||||
#endif
|
||||
|
||||
split_tlb = 0;
|
||||
|
@@ -170,6 +170,32 @@ void pcibios_set_master(struct pci_dev *dev)
|
||||
(0x80 << 8) | pci_cache_line_size);
|
||||
}
|
||||
|
||||
/*
|
||||
* pcibios_init_bridge() initializes cache line and default latency
|
||||
* for pci controllers and pci-pci bridges
|
||||
*/
|
||||
void __init pcibios_init_bridge(struct pci_dev *dev)
|
||||
{
|
||||
unsigned short bridge_ctl, bridge_ctl_new;
|
||||
|
||||
/* We deal only with pci controllers and pci-pci bridges. */
|
||||
if (!dev || (dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
|
||||
return;
|
||||
|
||||
/* PCI-PCI bridge - set the cache line and default latency
|
||||
* (32) for primary and secondary buses.
|
||||
*/
|
||||
pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER, 32);
|
||||
|
||||
pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &bridge_ctl);
|
||||
|
||||
bridge_ctl_new = bridge_ctl | PCI_BRIDGE_CTL_PARITY |
|
||||
PCI_BRIDGE_CTL_SERR | PCI_BRIDGE_CTL_MASTER_ABORT;
|
||||
dev_info(&dev->dev, "Changing bridge control from 0x%08x to 0x%08x\n",
|
||||
bridge_ctl, bridge_ctl_new);
|
||||
|
||||
pci_write_config_word(dev, PCI_BRIDGE_CONTROL, bridge_ctl_new);
|
||||
}
|
||||
|
||||
/*
|
||||
* pcibios align resources() is called every time generic PCI code
|
||||
|
@@ -44,6 +44,10 @@
|
||||
|
||||
struct system_cpuinfo_parisc boot_cpu_data __read_mostly;
|
||||
EXPORT_SYMBOL(boot_cpu_data);
|
||||
#ifdef CONFIG_PA8X00
|
||||
int _parisc_requires_coherency __read_mostly;
|
||||
EXPORT_SYMBOL(_parisc_requires_coherency);
|
||||
#endif
|
||||
|
||||
DEFINE_PER_CPU(struct cpuinfo_parisc, cpu_data);
|
||||
|
||||
@@ -277,8 +281,12 @@ void __init collect_boot_cpu_data(void)
|
||||
boot_cpu_data.cpu_type = parisc_get_cpu_type(boot_cpu_data.hversion);
|
||||
boot_cpu_data.cpu_name = cpu_name_version[boot_cpu_data.cpu_type][0];
|
||||
boot_cpu_data.family_name = cpu_name_version[boot_cpu_data.cpu_type][1];
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PA8X00
|
||||
_parisc_requires_coherency = (boot_cpu_data.cpu_type == mako) ||
|
||||
(boot_cpu_data.cpu_type == mako2);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user