diff options
Diffstat (limited to 'arch/ia64/hp')
| -rw-r--r-- | arch/ia64/hp/common/aml_nfw.c | 7 | ||||
| -rw-r--r-- | arch/ia64/hp/common/hwsw_iommu.c | 1 | ||||
| -rw-r--r-- | arch/ia64/hp/common/sba_iommu.c | 145 | ||||
| -rw-r--r-- | arch/ia64/hp/sim/Kconfig | 1 | ||||
| -rw-r--r-- | arch/ia64/hp/sim/boot/bootloader.c | 1 | ||||
| -rw-r--r-- | arch/ia64/hp/sim/boot/fw-emu.c | 38 | ||||
| -rw-r--r-- | arch/ia64/hp/sim/hpsim_irq.c | 57 | ||||
| -rw-r--r-- | arch/ia64/hp/sim/hpsim_setup.c | 6 | ||||
| -rw-r--r-- | arch/ia64/hp/sim/simeth.c | 34 | ||||
| -rw-r--r-- | arch/ia64/hp/sim/simscsi.c | 8 | ||||
| -rw-r--r-- | arch/ia64/hp/sim/simserial.c | 725 | 
11 files changed, 298 insertions, 725 deletions
diff --git a/arch/ia64/hp/common/aml_nfw.c b/arch/ia64/hp/common/aml_nfw.c index 22078486d35..84715fcbba0 100644 --- a/arch/ia64/hp/common/aml_nfw.c +++ b/arch/ia64/hp/common/aml_nfw.c @@ -23,15 +23,14 @@   */  #include <linux/module.h> -#include <acpi/acpi_bus.h> -#include <acpi/acpi_drivers.h> +#include <linux/acpi.h>  #include <asm/sal.h>  MODULE_AUTHOR("Bjorn Helgaas <bjorn.helgaas@hp.com>");  MODULE_LICENSE("GPL");  MODULE_DESCRIPTION("ACPI opregion handler for native firmware calls"); -static int force_register; +static bool force_register;  module_param_named(force, force_register, bool, 0);  MODULE_PARM_DESC(force, "Install opregion handler even without HPQ5001 device"); @@ -191,7 +190,7 @@ static int aml_nfw_add(struct acpi_device *device)  	return aml_nfw_add_global_handler();  } -static int aml_nfw_remove(struct acpi_device *device, int type) +static int aml_nfw_remove(struct acpi_device *device)  {  	return aml_nfw_remove_global_handler();  } diff --git a/arch/ia64/hp/common/hwsw_iommu.c b/arch/ia64/hp/common/hwsw_iommu.c index e4a80d82e3d..1e4cae5ae05 100644 --- a/arch/ia64/hp/common/hwsw_iommu.c +++ b/arch/ia64/hp/common/hwsw_iommu.c @@ -15,6 +15,7 @@  #include <linux/device.h>  #include <linux/dma-mapping.h>  #include <linux/swiotlb.h> +#include <linux/export.h>  #include <asm/machvec.h>  extern struct dma_map_ops sba_dma_ops, swiotlb_dma_ops; diff --git a/arch/ia64/hp/common/sba_iommu.c b/arch/ia64/hp/common/sba_iommu.c index 4ce8d1358fe..344387a5540 100644 --- a/arch/ia64/hp/common/sba_iommu.c +++ b/arch/ia64/hp/common/sba_iommu.c @@ -37,12 +37,12 @@  #include <linux/crash_dump.h>  #include <linux/iommu-helper.h>  #include <linux/dma-mapping.h> +#include <linux/prefetch.h>  #include <asm/delay.h>		/* ia64_get_itc() */  #include <asm/io.h>  #include <asm/page.h>		/* PAGE_OFFSET */  #include <asm/dma.h> -#include <asm/system.h>		/* wmb() */  #include <asm/acpi-ext.h> @@ -242,7 +242,7 @@ struct ioc {  	struct pci_dev	*sac_only_dev;  }; -static struct ioc *ioc_list; +static struct ioc *ioc_list, *ioc_found;  static int reserve_sba_gart = 1;  static SBA_INLINE void sba_mark_invalid(struct ioc *, dma_addr_t, size_t); @@ -255,7 +255,7 @@ static u64 prefetch_spill_page;  #endif  #ifdef CONFIG_PCI -# define GET_IOC(dev)	(((dev)->bus == &pci_bus_type)						\ +# define GET_IOC(dev)	((dev_is_pci(dev))						\  			 ? ((struct ioc *) PCI_CONTROLLER(to_pci_dev(dev))->iommu) : NULL)  #else  # define GET_IOC(dev)	NULL @@ -914,7 +914,7 @@ sba_mark_invalid(struct ioc *ioc, dma_addr_t iova, size_t byte_cnt)   * @dir:  R/W or both.   * @attrs: optional dma attributes   * - * See Documentation/PCI/PCI-DMA-mapping.txt + * See Documentation/DMA-API-HOWTO.txt   */  static dma_addr_t sba_map_page(struct device *dev, struct page *page,  			       unsigned long poff, size_t size, @@ -1043,7 +1043,7 @@ sba_mark_clean(struct ioc *ioc, dma_addr_t iova, size_t size)   * @dir:  R/W or both.   * @attrs: optional dma attributes   * - * See Documentation/PCI/PCI-DMA-mapping.txt + * See Documentation/DMA-API-HOWTO.txt   */  static void sba_unmap_page(struct device *dev, dma_addr_t iova, size_t size,  			   enum dma_data_direction dir, struct dma_attrs *attrs) @@ -1063,7 +1063,7 @@ static void sba_unmap_page(struct device *dev, dma_addr_t iova, size_t size,  		/*  		** Address does not fall w/in IOVA, must be bypassing  		*/ -		DBG_BYPASS("sba_unmap_single_atttrs() bypass addr: 0x%lx\n", +		DBG_BYPASS("sba_unmap_single_attrs() bypass addr: 0x%lx\n",  			   iova);  #ifdef ENABLE_MARK_CLEAN @@ -1126,10 +1126,11 @@ void sba_unmap_single_attrs(struct device *dev, dma_addr_t iova, size_t size,   * @size:  number of bytes mapped in driver buffer.   * @dma_handle:  IOVA of new buffer.   * - * See Documentation/PCI/PCI-DMA-mapping.txt + * See Documentation/DMA-API-HOWTO.txt   */  static void * -sba_alloc_coherent (struct device *dev, size_t size, dma_addr_t *dma_handle, gfp_t flags) +sba_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, +		   gfp_t flags, struct dma_attrs *attrs)  {  	struct ioc *ioc;  	void *addr; @@ -1139,11 +1140,13 @@ sba_alloc_coherent (struct device *dev, size_t size, dma_addr_t *dma_handle, gfp  #ifdef CONFIG_NUMA  	{ +		int node = ioc->node;  		struct page *page; -		page = alloc_pages_exact_node(ioc->node == MAX_NUMNODES ? -		                        numa_node_id() : ioc->node, flags, -		                        get_order(size)); +		if (node == NUMA_NO_NODE) +			node = numa_node_id(); + +		page = alloc_pages_exact_node(node, flags, get_order(size));  		if (unlikely(!page))  			return NULL; @@ -1189,10 +1192,10 @@ sba_alloc_coherent (struct device *dev, size_t size, dma_addr_t *dma_handle, gfp   * @vaddr:  virtual address IOVA of "consistent" buffer.   * @dma_handler:  IO virtual address of "consistent" buffer.   * - * See Documentation/PCI/PCI-DMA-mapping.txt + * See Documentation/DMA-API-HOWTO.txt   */ -static void sba_free_coherent (struct device *dev, size_t size, void *vaddr, -			       dma_addr_t dma_handle) +static void sba_free_coherent(struct device *dev, size_t size, void *vaddr, +			      dma_addr_t dma_handle, struct dma_attrs *attrs)  {  	sba_unmap_single_attrs(dev, dma_handle, size, 0, NULL);  	free_pages((unsigned long) vaddr, get_order(size)); @@ -1452,7 +1455,7 @@ static void sba_unmap_sg_attrs(struct device *dev, struct scatterlist *sglist,   * @dir:  R/W or both.   * @attrs: optional dma attributes   * - * See Documentation/PCI/PCI-DMA-mapping.txt + * See Documentation/DMA-API-HOWTO.txt   */  static int sba_map_sg_attrs(struct device *dev, struct scatterlist *sglist,  			    int nents, enum dma_data_direction dir, @@ -1548,7 +1551,7 @@ static int sba_map_sg_attrs(struct device *dev, struct scatterlist *sglist,   * @dir:  R/W or both.   * @attrs: optional dma attributes   * - * See Documentation/PCI/PCI-DMA-mapping.txt + * See Documentation/DMA-API-HOWTO.txt   */  static void sba_unmap_sg_attrs(struct device *dev, struct scatterlist *sglist,  			       int nents, enum dma_data_direction dir, @@ -1595,7 +1598,7 @@ static void sba_unmap_sg_attrs(struct device *dev, struct scatterlist *sglist,  *  ***************************************************************/ -static void __init +static void  ioc_iova_init(struct ioc *ioc)  {  	int tcnfg; @@ -1806,20 +1809,13 @@ static struct ioc_iommu ioc_iommu_info[] __initdata = {  	{ SX2000_IOC_ID, "sx2000", NULL },  }; -static struct ioc * __init -ioc_init(unsigned long hpa, void *handle) +static void ioc_init(unsigned long hpa, struct ioc *ioc)  { -	struct ioc *ioc;  	struct ioc_iommu *info; -	ioc = kzalloc(sizeof(*ioc), GFP_KERNEL); -	if (!ioc) -		return NULL; -  	ioc->next = ioc_list;  	ioc_list = ioc; -	ioc->handle = handle;  	ioc->ioc_hpa = ioremap(hpa, 0x1000);  	ioc->func_id = READ_REG(ioc->ioc_hpa + IOC_FUNC_ID); @@ -1860,8 +1856,6 @@ ioc_init(unsigned long hpa, void *handle)  		"%s %d.%d HPA 0x%lx IOVA space %dMb at 0x%lx\n",  		ioc->name, (ioc->rev >> 4) & 0xF, ioc->rev & 0xF,  		hpa, ioc->iov_size >> 20, ioc->ibase); - -	return ioc;  } @@ -1913,7 +1907,7 @@ ioc_show(struct seq_file *s, void *v)  	seq_printf(s, "Hewlett Packard %s IOC rev %d.%d\n",  		ioc->name, ((ioc->rev >> 4) & 0xF), (ioc->rev & 0xF));  #ifdef CONFIG_NUMA -	if (ioc->node != MAX_NUMNODES) +	if (ioc->node != NUMA_NO_NODE)  		seq_printf(s, "NUMA node       : %d\n", ioc->node);  #endif  	seq_printf(s, "IOVA size       : %ld MB\n", ((ioc->pdir_size >> 3) * iovp_size)/(1024*1024)); @@ -1991,7 +1985,7 @@ sba_connect_bus(struct pci_bus *bus)  	if (PCI_CONTROLLER(bus)->iommu)  		return; -	handle = PCI_CONTROLLER(bus)->acpi_handle; +	handle = acpi_device_handle(PCI_CONTROLLER(bus)->companion);  	if (!handle)  		return; @@ -2014,47 +2008,35 @@ sba_connect_bus(struct pci_bus *bus)  	printk(KERN_WARNING "No IOC for PCI Bus %04x:%02x in ACPI\n", pci_domain_nr(bus), bus->number);  } -#ifdef CONFIG_NUMA  static void __init  sba_map_ioc_to_node(struct ioc *ioc, acpi_handle handle)  { +#ifdef CONFIG_NUMA  	unsigned int node; -	int pxm; - -	ioc->node = MAX_NUMNODES; -	pxm = acpi_get_pxm(handle); - -	if (pxm < 0) -		return; - -	node = pxm_to_node(pxm); - -	if (node >= MAX_NUMNODES || !node_online(node)) -		return; +	node = acpi_get_node(handle); +	if (node != NUMA_NO_NODE && !node_online(node)) +		node = NUMA_NO_NODE;  	ioc->node = node; -	return; -} -#else -#define sba_map_ioc_to_node(ioc, handle)  #endif +} -static int __init -acpi_sba_ioc_add(struct acpi_device *device) +static void acpi_sba_ioc_add(struct ioc *ioc)  { -	struct ioc *ioc; +	acpi_handle handle = ioc->handle;  	acpi_status status;  	u64 hpa, length;  	struct acpi_device_info *adi; -	status = hp_acpi_csr_space(device->handle, &hpa, &length); +	ioc_found = ioc->next; +	status = hp_acpi_csr_space(handle, &hpa, &length);  	if (ACPI_FAILURE(status)) -		return 1; +		goto err; -	status = acpi_get_object_info(device->handle, &adi); +	status = acpi_get_object_info(handle, &adi);  	if (ACPI_FAILURE(status)) -		return 1; +		goto err;  	/*  	 * For HWP0001, only SBA appears in ACPI namespace.  It encloses the PCI @@ -2075,13 +2057,13 @@ acpi_sba_ioc_add(struct acpi_device *device)  	if (!iovp_shift)  		iovp_shift = 12; -	ioc = ioc_init(hpa, device->handle); -	if (!ioc) -		return 1; - +	ioc_init(hpa, ioc);  	/* setup NUMA node association */ -	sba_map_ioc_to_node(ioc, device->handle); -	return 0; +	sba_map_ioc_to_node(ioc, handle); +	return; + + err: +	kfree(ioc);  }  static const struct acpi_device_id hp_ioc_iommu_device_ids[] = { @@ -2089,14 +2071,35 @@ static const struct acpi_device_id hp_ioc_iommu_device_ids[] = {  	{"HWP0004", 0},  	{"", 0},  }; -static struct acpi_driver acpi_sba_ioc_driver = { -	.name		= "IOC IOMMU Driver", -	.ids		= hp_ioc_iommu_device_ids, -	.ops		= { -		.add	= acpi_sba_ioc_add, -	}, + +static int acpi_sba_ioc_attach(struct acpi_device *device, +			       const struct acpi_device_id *not_used) +{ +	struct ioc *ioc; + +	ioc = kzalloc(sizeof(*ioc), GFP_KERNEL); +	if (!ioc) +		return -ENOMEM; + +	ioc->next = ioc_found; +	ioc_found = ioc; +	ioc->handle = device->handle; +	return 1; +} + + +static struct acpi_scan_handler acpi_sba_ioc_handler = { +	.ids	= hp_ioc_iommu_device_ids, +	.attach	= acpi_sba_ioc_attach,  }; +static int __init acpi_sba_ioc_init_acpi(void) +{ +	return acpi_scan_add_handler(&acpi_sba_ioc_handler); +} +/* This has to run before acpi_scan_init(). */ +arch_initcall(acpi_sba_ioc_init_acpi); +  extern struct dma_map_ops swiotlb_dma_ops;  static int __init @@ -2121,7 +2124,13 @@ sba_init(void)  	}  #endif -	acpi_bus_register_driver(&acpi_sba_ioc_driver); +	/* +	 * ioc_found should be populated by the acpi_sba_ioc_handler's .attach() +	 * routine, but that only happens if acpi_scan_init() has already run. +	 */ +	while (ioc_found) +		acpi_sba_ioc_add(ioc_found); +  	if (!ioc_list) {  #ifdef CONFIG_IA64_GENERIC  		/* @@ -2212,8 +2221,8 @@ sba_page_override(char *str)  __setup("sbapagesize=",sba_page_override);  struct dma_map_ops sba_dma_ops = { -	.alloc_coherent		= sba_alloc_coherent, -	.free_coherent		= sba_free_coherent, +	.alloc			= sba_alloc_coherent, +	.free			= sba_free_coherent,  	.map_page		= sba_map_page,  	.unmap_page		= sba_unmap_page,  	.map_sg			= sba_map_sg_attrs, diff --git a/arch/ia64/hp/sim/Kconfig b/arch/ia64/hp/sim/Kconfig index 8d513a8c526..d84707d5520 100644 --- a/arch/ia64/hp/sim/Kconfig +++ b/arch/ia64/hp/sim/Kconfig @@ -8,6 +8,7 @@ config HP_SIMETH  config HP_SIMSERIAL  	bool "Simulated serial driver support" +	depends on TTY  config HP_SIMSERIAL_CONSOLE  	bool "Console for HP simulator" diff --git a/arch/ia64/hp/sim/boot/bootloader.c b/arch/ia64/hp/sim/boot/bootloader.c index c5e9baafafe..28f4b230b8c 100644 --- a/arch/ia64/hp/sim/boot/bootloader.c +++ b/arch/ia64/hp/sim/boot/bootloader.c @@ -20,7 +20,6 @@ struct task_struct;	/* forward declaration for elf.h */  #include <asm/pal.h>  #include <asm/pgtable.h>  #include <asm/sal.h> -#include <asm/system.h>  #include "ssc.h" diff --git a/arch/ia64/hp/sim/boot/fw-emu.c b/arch/ia64/hp/sim/boot/fw-emu.c index bf6d9d8c802..87bf9ad8cf0 100644 --- a/arch/ia64/hp/sim/boot/fw-emu.c +++ b/arch/ia64/hp/sim/boot/fw-emu.c @@ -13,6 +13,7 @@  #include <asm/io.h>  #include <asm/pal.h>  #include <asm/sal.h> +#include <asm/setup.h>  #include "ssc.h" @@ -160,28 +161,19 @@ sal_emulator (long index, unsigned long in1, unsigned long in2,  	 */  	status = 0;  	if (index == SAL_FREQ_BASE) { -		switch (in1) { -		      case SAL_FREQ_BASE_PLATFORM: +		if (in1 == SAL_FREQ_BASE_PLATFORM)  			r9 = 200000000; -			break; - -		      case SAL_FREQ_BASE_INTERVAL_TIMER: +		else if (in1 == SAL_FREQ_BASE_INTERVAL_TIMER) {  			/*  			 * Is this supposed to be the cr.itc frequency  			 * or something platform specific?  The SAL  			 * doc ain't exactly clear on this...  			 */  			r9 = 700000000; -			break; - -		      case SAL_FREQ_BASE_REALTIME_CLOCK: +		} else if (in1 == SAL_FREQ_BASE_REALTIME_CLOCK)  			r9 = 1; -			break; - -		      default: +		else  			status = -1; -			break; -		}  	} else if (index == SAL_SET_VECTORS) {  		;  	} else if (index == SAL_GET_STATE_INFO) { @@ -298,16 +290,16 @@ sys_fw_init (const char *args, int arglen)  	efi_runtime->hdr.signature = EFI_RUNTIME_SERVICES_SIGNATURE;  	efi_runtime->hdr.revision = EFI_RUNTIME_SERVICES_REVISION;  	efi_runtime->hdr.headersize = sizeof(efi_runtime->hdr); -	efi_runtime->get_time = __pa(&fw_efi_get_time); -	efi_runtime->set_time = __pa(&efi_unimplemented); -	efi_runtime->get_wakeup_time = __pa(&efi_unimplemented); -	efi_runtime->set_wakeup_time = __pa(&efi_unimplemented); -	efi_runtime->set_virtual_address_map = __pa(&efi_unimplemented); -	efi_runtime->get_variable = __pa(&efi_unimplemented); -	efi_runtime->get_next_variable = __pa(&efi_unimplemented); -	efi_runtime->set_variable = __pa(&efi_unimplemented); -	efi_runtime->get_next_high_mono_count = __pa(&efi_unimplemented); -	efi_runtime->reset_system = __pa(&efi_reset_system); +	efi_runtime->get_time = (void *)__pa(&fw_efi_get_time); +	efi_runtime->set_time = (void *)__pa(&efi_unimplemented); +	efi_runtime->get_wakeup_time = (void *)__pa(&efi_unimplemented); +	efi_runtime->set_wakeup_time = (void *)__pa(&efi_unimplemented); +	efi_runtime->set_virtual_address_map = (void *)__pa(&efi_unimplemented); +	efi_runtime->get_variable = (void *)__pa(&efi_unimplemented); +	efi_runtime->get_next_variable = (void *)__pa(&efi_unimplemented); +	efi_runtime->set_variable = (void *)__pa(&efi_unimplemented); +	efi_runtime->get_next_high_mono_count = (void *)__pa(&efi_unimplemented); +	efi_runtime->reset_system = (void *)__pa(&efi_reset_system);  	efi_tables->guid = SAL_SYSTEM_TABLE_GUID;  	efi_tables->table = __pa(sal_systab); diff --git a/arch/ia64/hp/sim/hpsim_irq.c b/arch/ia64/hp/sim/hpsim_irq.c index b272261d77c..0aa70ebda49 100644 --- a/arch/ia64/hp/sim/hpsim_irq.c +++ b/arch/ia64/hp/sim/hpsim_irq.c @@ -10,43 +10,66 @@  #include <linux/sched.h>  #include <linux/irq.h> +#include "hpsim_ssc.h" +  static unsigned int -hpsim_irq_startup (unsigned int irq) +hpsim_irq_startup(struct irq_data *data)  {  	return 0;  }  static void -hpsim_irq_noop (unsigned int irq) +hpsim_irq_noop(struct irq_data *data)  {  }  static int -hpsim_set_affinity_noop(unsigned int a, const struct cpumask *b) +hpsim_set_affinity_noop(struct irq_data *d, const struct cpumask *b, bool f)  {  	return 0;  }  static struct irq_chip irq_type_hp_sim = { -	.name =		"hpsim", -	.startup =	hpsim_irq_startup, -	.shutdown =	hpsim_irq_noop, -	.enable =	hpsim_irq_noop, -	.disable =	hpsim_irq_noop, -	.ack =		hpsim_irq_noop, -	.end =		hpsim_irq_noop, -	.set_affinity =	hpsim_set_affinity_noop, +	.name =			"hpsim", +	.irq_startup =		hpsim_irq_startup, +	.irq_shutdown =		hpsim_irq_noop, +	.irq_enable =		hpsim_irq_noop, +	.irq_disable =		hpsim_irq_noop, +	.irq_ack =		hpsim_irq_noop, +	.irq_set_affinity =	hpsim_set_affinity_noop,  }; +static void hpsim_irq_set_chip(int irq) +{ +	struct irq_chip *chip = irq_get_chip(irq); + +	if (chip == &no_irq_chip) +		irq_set_chip(irq, &irq_type_hp_sim); +} + +static void hpsim_connect_irq(int intr, int irq) +{ +	ia64_ssc(intr, irq, 0, 0, SSC_CONNECT_INTERRUPT); +} + +int hpsim_get_irq(int intr) +{ +	int irq = assign_irq_vector(AUTO_ASSIGN); + +	if (irq >= 0) { +		hpsim_irq_set_chip(irq); +		irq_set_handler(irq, handle_simple_irq); +		hpsim_connect_irq(intr, irq); +	} + +	return irq; +} +  void __init  hpsim_irq_init (void)  { -	struct irq_desc *idesc;  	int i; -	for (i = 0; i < NR_IRQS; ++i) { -		idesc = irq_desc + i; -		if (idesc->chip == &no_irq_chip) -			idesc->chip = &irq_type_hp_sim; -	} +	for_each_active_irq(i) +		hpsim_irq_set_chip(i);  } diff --git a/arch/ia64/hp/sim/hpsim_setup.c b/arch/ia64/hp/sim/hpsim_setup.c index f629e903ebc..664a5402a69 100644 --- a/arch/ia64/hp/sim/hpsim_setup.c +++ b/arch/ia64/hp/sim/hpsim_setup.c @@ -26,12 +26,6 @@  #include "hpsim_ssc.h"  void -ia64_ssc_connect_irq (long intr, long irq) -{ -	ia64_ssc(intr, irq, 0, 0, SSC_CONNECT_INTERRUPT); -} - -void  ia64_ctl_trace (long on)  {  	ia64_ssc(on, 0, 0, 0, SSC_CTL_TRACE); diff --git a/arch/ia64/hp/sim/simeth.c b/arch/ia64/hp/sim/simeth.c index 7e81966ce48..d1b04c4c95e 100644 --- a/arch/ia64/hp/sim/simeth.c +++ b/arch/ia64/hp/sim/simeth.c @@ -20,7 +20,6 @@  #include <linux/skbuff.h>  #include <linux/notifier.h>  #include <linux/bitops.h> -#include <asm/system.h>  #include <asm/irq.h>  #include <asm/hpsim.h> @@ -129,17 +128,6 @@ netdev_probe(char *name, unsigned char *ether)  static inline int -netdev_connect(int irq) -{ -	/* XXX Fix me -	 * this does not support multiple cards -	 * also no return value -	 */ -	ia64_ssc_connect_irq(NETWORK_INTR, irq); -	return 0; -} - -static inline int  netdev_attach(int fd, int irq, unsigned int ipaddr)  {  	/* this puts the host interface in the right mode (start interrupting) */ @@ -172,7 +160,7 @@ static const struct net_device_ops simeth_netdev_ops = {  	.ndo_stop		= simeth_close,  	.ndo_start_xmit		= simeth_tx,  	.ndo_get_stats		= simeth_get_stats, -	.ndo_set_multicast_list	= set_multicast_list, /* not yet used */ +	.ndo_set_rx_mode	= set_multicast_list, /* not yet used */  }; @@ -193,7 +181,7 @@ simeth_probe1(void)  	unsigned char mac_addr[ETH_ALEN];  	struct simeth_local *local;  	struct net_device *dev; -	int fd, i, err, rc; +	int fd, err, rc;  	/*  	 * XXX Fix me @@ -226,22 +214,16 @@ simeth_probe1(void)  		return err;  	} -	if ((rc = assign_irq_vector(AUTO_ASSIGN)) < 0) -		panic("%s: out of interrupt vectors!\n", __func__); -	dev->irq = rc; -  	/*  	 * attach the interrupt in the simulator, this does enable interrupts  	 * until a netdev_attach() is called  	 */ -	netdev_connect(dev->irq); +	if ((rc = hpsim_get_irq(NETWORK_INTR)) < 0) +		panic("%s: out of interrupt vectors!\n", __func__); +	dev->irq = rc; -	printk(KERN_INFO "%s: hosteth=%s simfd=%d, HwAddr", -	       dev->name, simeth_device, local->simfd); -	for(i = 0; i < ETH_ALEN; i++) { -		printk(" %2.2x", dev->dev_addr[i]); -	} -	printk(", IRQ %d\n", dev->irq); +	printk(KERN_INFO "%s: hosteth=%s simfd=%d, HwAddr=%pm, IRQ %d\n", +	       dev->name, simeth_device, local->simfd, dev->dev_addr, dev->irq);  	return 0;  } @@ -286,7 +268,7 @@ static __inline__ int dev_is_ethdev(struct net_device *dev)  static int  simeth_device_event(struct notifier_block *this,unsigned long event, void *ptr)  { -	struct net_device *dev = ptr; +	struct net_device *dev = netdev_notifier_info_to_dev(ptr);  	struct simeth_local *local;  	struct in_device *in_dev;  	struct in_ifaddr **ifap = NULL; diff --git a/arch/ia64/hp/sim/simscsi.c b/arch/ia64/hp/sim/simscsi.c index 3a078ad3aa4..3a428f19a00 100644 --- a/arch/ia64/hp/sim/simscsi.c +++ b/arch/ia64/hp/sim/simscsi.c @@ -88,8 +88,8 @@ simscsi_setup (char *s)  	if (strlen(s) > MAX_ROOT_LEN) {  		printk(KERN_ERR "simscsi_setup: prefix too long---using default %s\n",  		       simscsi_root); -	} -	simscsi_root = s; +	} else +		simscsi_root = s;  	return 1;  } @@ -202,7 +202,7 @@ simscsi_readwrite10 (struct scsi_cmnd *sc, int mode)  }  static int -simscsi_queuecommand (struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *)) +simscsi_queuecommand_lck (struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *))  {  	unsigned int target_id = sc->device->id;  	char fname[MAX_ROOT_LEN+16]; @@ -326,6 +326,8 @@ simscsi_queuecommand (struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *))  	return 0;  } +static DEF_SCSI_QCMD(simscsi_queuecommand) +  static int  simscsi_host_reset (struct scsi_cmnd *sc)  { diff --git a/arch/ia64/hp/sim/simserial.c b/arch/ia64/hp/sim/simserial.c index 13633da0d3d..e70cadec7ce 100644 --- a/arch/ia64/hp/sim/simserial.c +++ b/arch/ia64/hp/sim/simserial.c @@ -4,16 +4,11 @@   * This driver is mostly used for bringup purposes and will go away.   * It has a strong dependency on the system console. All outputs   * are rerouted to the same facility as the one used by printk which, in our - * case means sys_sim.c console (goes via the simulator). The code hereafter - * is completely leveraged from the serial.c driver. + * case means sys_sim.c console (goes via the simulator).   *   * Copyright (C) 1999-2000, 2002-2003 Hewlett-Packard Co   *	Stephane Eranian <eranian@hpl.hp.com>   *	David Mosberger-Tang <davidm@hpl.hp.com> - * - * 02/04/00 D. Mosberger	Merged in serial.c bug fixes in rs_close(). - * 02/25/00 D. Mosberger	Synced up with 2.3.99pre-5 version of serial.c. - * 07/30/02 D. Mosberger	Replace sti()/cli() with explicit spinlocks & local irq masking   */  #include <linux/init.h> @@ -27,15 +22,17 @@  #include <linux/seq_file.h>  #include <linux/slab.h>  #include <linux/capability.h> +#include <linux/circ_buf.h>  #include <linux/console.h> +#include <linux/irq.h>  #include <linux/module.h>  #include <linux/serial.h> -#include <linux/serialP.h>  #include <linux/sysrq.h> +#include <linux/uaccess.h> + +#include <asm/hpsim.h> -#include <asm/irq.h> -#include <asm/hw_irq.h> -#include <asm/uaccess.h> +#include "hpsim_ssc.h"  #undef SIMSERIAL_DEBUG	/* define this to get some debug information */ @@ -43,125 +40,51 @@  #define NR_PORTS	1	/* only one port for now */ -#define IRQ_T(info) ((info->flags & ASYNC_SHARE_IRQ) ? IRQF_SHARED : IRQF_DISABLED) - -#define SSC_GETCHAR	21 - -extern long ia64_ssc (long, long, long, long, int); -extern void ia64_ssc_connect_irq (long intr, long irq); - -static char *serial_name = "SimSerial driver"; -static char *serial_version = "0.6"; - -/* - * This has been extracted from asm/serial.h. We need one eventually but - * I don't know exactly what we're going to put in it so just fake one - * for now. - */ -#define BASE_BAUD ( 1843200 / 16 ) - -#define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST) - -/* - * Most of the values here are meaningless to this particular driver. - * However some values must be preserved for the code (leveraged from serial.c - * to work correctly). - * port must not be 0 - * type must not be UNKNOWN - * So I picked arbitrary (guess from where?) values instead - */ -static struct serial_state rs_table[NR_PORTS]={ -  /* UART CLK   PORT IRQ     FLAGS        */ -  { 0, BASE_BAUD, 0x3F8, 0, STD_COM_FLAGS,0,PORT_16550 }  /* ttyS0 */ +struct serial_state { +	struct tty_port port; +	struct circ_buf xmit; +	int irq; +	int x_char;  }; -/* - * Just for the fun of it ! - */ -static struct serial_uart_config uart_config[] = { -	{ "unknown", 1, 0 }, -	{ "8250", 1, 0 }, -	{ "16450", 1, 0 }, -	{ "16550", 1, 0 }, -	{ "16550A", 16, UART_CLEAR_FIFO | UART_USE_FIFO }, -	{ "cirrus", 1, 0 }, -	{ "ST16650", 1, UART_CLEAR_FIFO | UART_STARTECH }, -	{ "ST16650V2", 32, UART_CLEAR_FIFO | UART_USE_FIFO | -		  UART_STARTECH }, -	{ "TI16750", 64, UART_CLEAR_FIFO | UART_USE_FIFO}, -	{ NULL, 0} -}; +static struct serial_state rs_table[NR_PORTS];  struct tty_driver *hp_simserial_driver; -static struct async_struct *IRQ_ports[NR_IRQS]; -  static struct console *console; -static unsigned char *tmp_buf; - -extern struct console *console_drivers; /* from kernel/printk.c */ - -/* - * ------------------------------------------------------------ - * rs_stop() and rs_start() - * - * This routines are called before setting or resetting tty->stopped. - * They enable or disable transmitter interrupts, as necessary. - * ------------------------------------------------------------ - */ -static void rs_stop(struct tty_struct *tty) -{ -#ifdef SIMSERIAL_DEBUG -	printk("rs_stop: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n", -		tty->stopped, tty->hw_stopped, tty->flow_stopped); -#endif - -} - -static void rs_start(struct tty_struct *tty) -{ -#ifdef SIMSERIAL_DEBUG -	printk("rs_start: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n", -		tty->stopped, tty->hw_stopped, tty->flow_stopped); -#endif -} - -static  void receive_chars(struct tty_struct *tty) +static void receive_chars(struct tty_port *port)  {  	unsigned char ch;  	static unsigned char seen_esc = 0;  	while ( (ch = ia64_ssc(0, 0, 0, 0, SSC_GETCHAR)) ) { -		if ( ch == 27 && seen_esc == 0 ) { +		if (ch == 27 && seen_esc == 0) {  			seen_esc = 1;  			continue; -		} else { -			if ( seen_esc==1 && ch == 'O' ) { -				seen_esc = 2; -				continue; -			} else if ( seen_esc == 2 ) { -				if ( ch == 'P' ) /* F1 */ -					show_state(); +		} else if (seen_esc == 1 && ch == 'O') { +			seen_esc = 2; +			continue; +		} else if (seen_esc == 2) { +			if (ch == 'P') /* F1 */ +				show_state();  #ifdef CONFIG_MAGIC_SYSRQ -				if ( ch == 'S' ) { /* F4 */ -					do -						ch = ia64_ssc(0, 0, 0, 0, -							      SSC_GETCHAR); -					while (!ch); -					handle_sysrq(ch); -				} -#endif -				seen_esc = 0; -				continue; +			if (ch == 'S') { /* F4 */ +				do { +					ch = ia64_ssc(0, 0, 0, 0, SSC_GETCHAR); +				} while (!ch); +				handle_sysrq(ch);  			} +#endif +			seen_esc = 0; +			continue;  		}  		seen_esc = 0; -		if (tty_insert_flip_char(tty, ch, TTY_NORMAL) == 0) +		if (tty_insert_flip_char(port, ch, TTY_NORMAL) == 0)  			break;  	} -	tty_flip_buffer_push(tty); +	tty_flip_buffer_push(port);  }  /* @@ -169,22 +92,10 @@ static  void receive_chars(struct tty_struct *tty)   */  static irqreturn_t rs_interrupt_single(int irq, void *dev_id)  { -	struct async_struct * info; +	struct serial_state *info = dev_id; + +	receive_chars(&info->port); -	/* -	 * I don't know exactly why they don't use the dev_id opaque data -	 * pointer instead of this extra lookup table -	 */ -	info = IRQ_ports[irq]; -	if (!info || !info->tty) { -		printk(KERN_INFO "simrs_interrupt_single: info|tty=0 info=%p problem\n", info); -		return IRQ_NONE; -	} -	/* -	 * pretty simple in our case, because we only get interrupts -	 * on inbound traffic -	 */ -	receive_chars(info->tty);  	return IRQ_HANDLED;  } @@ -194,17 +105,12 @@ static irqreturn_t rs_interrupt_single(int irq, void *dev_id)   * -------------------------------------------------------------------   */ -static void do_softint(struct work_struct *private_) -{ -	printk(KERN_ERR "simserial: do_softint called\n"); -} -  static int rs_put_char(struct tty_struct *tty, unsigned char ch)  { -	struct async_struct *info = (struct async_struct *)tty->driver_data; +	struct serial_state *info = tty->driver_data;  	unsigned long flags; -	if (!tty || !info->xmit.buf) +	if (!info->xmit.buf)  		return 0;  	local_irq_save(flags); @@ -218,12 +124,12 @@ static int rs_put_char(struct tty_struct *tty, unsigned char ch)  	return 1;  } -static void transmit_chars(struct async_struct *info, int *intr_done) +static void transmit_chars(struct tty_struct *tty, struct serial_state *info, +		int *intr_done)  {  	int count;  	unsigned long flags; -  	local_irq_save(flags);  	if (info->x_char) { @@ -231,16 +137,15 @@ static void transmit_chars(struct async_struct *info, int *intr_done)  		console->write(console, &c, 1); -		info->state->icount.tx++;  		info->x_char = 0;  		goto out;  	} -	if (info->xmit.head == info->xmit.tail || info->tty->stopped || info->tty->hw_stopped) { +	if (info->xmit.head == info->xmit.tail || tty->stopped) {  #ifdef SIMSERIAL_DEBUG  		printk("transmit_chars: head=%d, tail=%d, stopped=%d\n", -		       info->xmit.head, info->xmit.tail, info->tty->stopped); +		       info->xmit.head, info->xmit.tail, tty->stopped);  #endif  		goto out;  	} @@ -272,24 +177,24 @@ out:  static void rs_flush_chars(struct tty_struct *tty)  { -	struct async_struct *info = (struct async_struct *)tty->driver_data; +	struct serial_state *info = tty->driver_data; -	if (info->xmit.head == info->xmit.tail || tty->stopped || tty->hw_stopped || -	    !info->xmit.buf) +	if (info->xmit.head == info->xmit.tail || tty->stopped || +			!info->xmit.buf)  		return; -	transmit_chars(info, NULL); +	transmit_chars(tty, info, NULL);  } -  static int rs_write(struct tty_struct * tty,  		    const unsigned char *buf, int count)  { +	struct serial_state *info = tty->driver_data;  	int	c, ret = 0; -	struct async_struct *info = (struct async_struct *)tty->driver_data;  	unsigned long flags; -	if (!tty || !info->xmit.buf || !tmp_buf) return 0; +	if (!info->xmit.buf) +		return 0;  	local_irq_save(flags);  	while (1) { @@ -310,30 +215,30 @@ static int rs_write(struct tty_struct * tty,  	/*  	 * Hey, we transmit directly from here in our case  	 */ -	if (CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE) -	    && !tty->stopped && !tty->hw_stopped) { -		transmit_chars(info, NULL); -	} +	if (CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE) && +			!tty->stopped) +		transmit_chars(tty, info, NULL); +  	return ret;  }  static int rs_write_room(struct tty_struct *tty)  { -	struct async_struct *info = (struct async_struct *)tty->driver_data; +	struct serial_state *info = tty->driver_data;  	return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);  }  static int rs_chars_in_buffer(struct tty_struct *tty)  { -	struct async_struct *info = (struct async_struct *)tty->driver_data; +	struct serial_state *info = tty->driver_data;  	return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);  }  static void rs_flush_buffer(struct tty_struct *tty)  { -	struct async_struct *info = (struct async_struct *)tty->driver_data; +	struct serial_state *info = tty->driver_data;  	unsigned long flags;  	local_irq_save(flags); @@ -349,7 +254,7 @@ static void rs_flush_buffer(struct tty_struct *tty)   */  static void rs_send_xchar(struct tty_struct *tty, char ch)  { -	struct async_struct *info = (struct async_struct *)tty->driver_data; +	struct serial_state *info = tty->driver_data;  	info->x_char = ch;  	if (ch) { @@ -357,7 +262,7 @@ static void rs_send_xchar(struct tty_struct *tty, char ch)  		 * I guess we could call console->write() directly but  		 * let's do that for now.  		 */ -		transmit_chars(info, NULL); +		transmit_chars(tty, info, NULL);  	}  } @@ -371,14 +276,15 @@ static void rs_send_xchar(struct tty_struct *tty, char ch)   */  static void rs_throttle(struct tty_struct * tty)  { -	if (I_IXOFF(tty)) rs_send_xchar(tty, STOP_CHAR(tty)); +	if (I_IXOFF(tty)) +		rs_send_xchar(tty, STOP_CHAR(tty));  	printk(KERN_INFO "simrs_throttle called\n");  }  static void rs_unthrottle(struct tty_struct * tty)  { -	struct async_struct *info = (struct async_struct *)tty->driver_data; +	struct serial_state *info = tty->driver_data;  	if (I_IXOFF(tty)) {  		if (info->x_char) @@ -389,9 +295,7 @@ static void rs_unthrottle(struct tty_struct * tty)  	printk(KERN_INFO "simrs_unthrottle called\n");  } - -static int rs_ioctl(struct tty_struct *tty, struct file * file, -		    unsigned int cmd, unsigned long arg) +static int rs_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg)  {  	if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&  	    (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) && @@ -401,272 +305,67 @@ static int rs_ioctl(struct tty_struct *tty, struct file * file,  	}  	switch (cmd) { -		case TIOCGSERIAL: -			printk(KERN_INFO "simrs_ioctl TIOCGSERIAL called\n"); -			return 0; -		case TIOCSSERIAL: -			printk(KERN_INFO "simrs_ioctl TIOCSSERIAL called\n"); -			return 0; -		case TIOCSERCONFIG: -			printk(KERN_INFO "rs_ioctl: TIOCSERCONFIG called\n"); -			return -EINVAL; - -		case TIOCSERGETLSR: /* Get line status register */ -			printk(KERN_INFO "rs_ioctl: TIOCSERGETLSR called\n"); -			return  -EINVAL; - -		case TIOCSERGSTRUCT: -			printk(KERN_INFO "rs_ioctl: TIOCSERGSTRUCT called\n"); -#if 0 -			if (copy_to_user((struct async_struct *) arg, -					 info, sizeof(struct async_struct))) -				return -EFAULT; -#endif -			return 0; - -		/* -		 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change -		 * - mask passed in arg for lines of interest -		 *   (use |'ed TIOCM_RNG/DSR/CD/CTS for masking) -		 * Caller should use TIOCGICOUNT to see which one it was -		 */ -		case TIOCMIWAIT: -			printk(KERN_INFO "rs_ioctl: TIOCMIWAIT: called\n"); -			return 0; -		case TIOCSERGWILD: -		case TIOCSERSWILD: -			/* "setserial -W" is called in Debian boot */ -			printk (KERN_INFO "TIOCSER?WILD ioctl obsolete, ignored.\n"); -			return 0; - -		default: -			return -ENOIOCTLCMD; -		} -	return 0; +	case TIOCGSERIAL: +	case TIOCSSERIAL: +	case TIOCSERGSTRUCT: +	case TIOCMIWAIT: +		return 0; +	case TIOCSERCONFIG: +	case TIOCSERGETLSR: /* Get line status register */ +		return -EINVAL; +	case TIOCSERGWILD: +	case TIOCSERSWILD: +		/* "setserial -W" is called in Debian boot */ +		printk (KERN_INFO "TIOCSER?WILD ioctl obsolete, ignored.\n"); +		return 0; +	} +	return -ENOIOCTLCMD;  }  #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK)) -static void rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios) -{ -	/* Handle turning off CRTSCTS */ -	if ((old_termios->c_cflag & CRTSCTS) && -	    !(tty->termios->c_cflag & CRTSCTS)) { -		tty->hw_stopped = 0; -		rs_start(tty); -	} -}  /*   * This routine will shutdown a serial port; interrupts are disabled, and   * DTR is dropped if the hangup on close termio flag is on.   */ -static void shutdown(struct async_struct * info) +static void shutdown(struct tty_port *port)  { -	unsigned long	flags; -	struct serial_state *state; -	int		retval; - -	if (!(info->flags & ASYNC_INITIALIZED)) return; - -	state = info->state; - -#ifdef SIMSERIAL_DEBUG -	printk("Shutting down serial port %d (irq %d)....", info->line, -	       state->irq); -#endif +	struct serial_state *info = container_of(port, struct serial_state, +			port); +	unsigned long flags;  	local_irq_save(flags); -	{ -		/* -		 * First unlink the serial port from the IRQ chain... -		 */ -		if (info->next_port) -			info->next_port->prev_port = info->prev_port; -		if (info->prev_port) -			info->prev_port->next_port = info->next_port; -		else -			IRQ_ports[state->irq] = info->next_port; - -		/* -		 * Free the IRQ, if necessary -		 */ -		if (state->irq && (!IRQ_ports[state->irq] || -				   !IRQ_ports[state->irq]->next_port)) { -			if (IRQ_ports[state->irq]) { -				free_irq(state->irq, NULL); -				retval = request_irq(state->irq, rs_interrupt_single, -						     IRQ_T(info), "serial", NULL); - -				if (retval) -					printk(KERN_ERR "serial shutdown: request_irq: error %d" -					       "  Couldn't reacquire IRQ.\n", retval); -			} else -				free_irq(state->irq, NULL); -		} +	if (info->irq) +		free_irq(info->irq, info); -		if (info->xmit.buf) { -			free_page((unsigned long) info->xmit.buf); -			info->xmit.buf = NULL; -		} - -		if (info->tty) set_bit(TTY_IO_ERROR, &info->tty->flags); - -		info->flags &= ~ASYNC_INITIALIZED; +	if (info->xmit.buf) { +		free_page((unsigned long) info->xmit.buf); +		info->xmit.buf = NULL;  	}  	local_irq_restore(flags);  } -/* - * ------------------------------------------------------------ - * rs_close() - * - * This routine is called when the serial port gets closed.  First, we - * wait for the last remaining data to be sent.  Then, we unlink its - * async structure from the interrupt chain if necessary, and we free - * that IRQ if nothing is left in the chain. - * ------------------------------------------------------------ - */  static void rs_close(struct tty_struct *tty, struct file * filp)  { -	struct async_struct * info = (struct async_struct *)tty->driver_data; -	struct serial_state *state; -	unsigned long flags; +	struct serial_state *info = tty->driver_data; -	if (!info ) return; - -	state = info->state; - -	local_irq_save(flags); -	if (tty_hung_up_p(filp)) { -#ifdef SIMSERIAL_DEBUG -		printk("rs_close: hung_up\n"); -#endif -		local_irq_restore(flags); -		return; -	} -#ifdef SIMSERIAL_DEBUG -	printk("rs_close ttys%d, count = %d\n", info->line, state->count); -#endif -	if ((tty->count == 1) && (state->count != 1)) { -		/* -		 * Uh, oh.  tty->count is 1, which means that the tty -		 * structure will be freed.  state->count should always -		 * be one in these conditions.  If it's greater than -		 * one, we've got real problems, since it means the -		 * serial port won't be shutdown. -		 */ -		printk(KERN_ERR "rs_close: bad serial port count; tty->count is 1, " -		       "state->count is %d\n", state->count); -		state->count = 1; -	} -	if (--state->count < 0) { -		printk(KERN_ERR "rs_close: bad serial port count for ttys%d: %d\n", -		       info->line, state->count); -		state->count = 0; -	} -	if (state->count) { -		local_irq_restore(flags); -		return; -	} -	info->flags |= ASYNC_CLOSING; -	local_irq_restore(flags); - -	/* -	 * Now we wait for the transmit buffer to clear; and we notify -	 * the line discipline to only process XON/XOFF characters. -	 */ -	shutdown(info); -	rs_flush_buffer(tty); -	tty_ldisc_flush(tty); -	info->event = 0; -	info->tty = NULL; -	if (info->blocked_open) { -		if (info->close_delay) -			schedule_timeout_interruptible(info->close_delay); -		wake_up_interruptible(&info->open_wait); -	} -	info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING); -	wake_up_interruptible(&info->close_wait); +	tty_port_close(&info->port, tty, filp);  } -/* - * rs_wait_until_sent() --- wait until the transmitter is empty - */ -static void rs_wait_until_sent(struct tty_struct *tty, int timeout) -{ -} - - -/* - * rs_hangup() --- called by tty_hangup() when a hangup is signaled. - */  static void rs_hangup(struct tty_struct *tty)  { -	struct async_struct * info = (struct async_struct *)tty->driver_data; -	struct serial_state *state = info->state; - -#ifdef SIMSERIAL_DEBUG -	printk("rs_hangup: called\n"); -#endif - -	state = info->state; +	struct serial_state *info = tty->driver_data;  	rs_flush_buffer(tty); -	if (info->flags & ASYNC_CLOSING) -		return; -	shutdown(info); - -	info->event = 0; -	state->count = 0; -	info->flags &= ~ASYNC_NORMAL_ACTIVE; -	info->tty = NULL; -	wake_up_interruptible(&info->open_wait); -} - - -static int get_async_struct(int line, struct async_struct **ret_info) -{ -	struct async_struct *info; -	struct serial_state *sstate; - -	sstate = rs_table + line; -	sstate->count++; -	if (sstate->info) { -		*ret_info = sstate->info; -		return 0; -	} -	info = kzalloc(sizeof(struct async_struct), GFP_KERNEL); -	if (!info) { -		sstate->count--; -		return -ENOMEM; -	} -	init_waitqueue_head(&info->open_wait); -	init_waitqueue_head(&info->close_wait); -	init_waitqueue_head(&info->delta_msr_wait); -	info->magic = SERIAL_MAGIC; -	info->port = sstate->port; -	info->flags = sstate->flags; -	info->xmit_fifo_size = sstate->xmit_fifo_size; -	info->line = line; -	INIT_WORK(&info->work, do_softint); -	info->state = sstate; -	if (sstate->info) { -		kfree(info); -		*ret_info = sstate->info; -		return 0; -	} -	*ret_info = sstate->info = info; -	return 0; +	tty_port_hangup(&info->port);  } -static int -startup(struct async_struct *info) +static int activate(struct tty_port *port, struct tty_struct *tty)  { -	unsigned long flags; -	int	retval=0; -	irq_handler_t handler; -	struct serial_state *state= info->state; -	unsigned long page; +	struct serial_state *state = container_of(port, struct serial_state, +			port); +	unsigned long flags, page; +	int retval = 0;  	page = get_zeroed_page(GFP_KERNEL);  	if (!page) @@ -674,86 +373,31 @@ startup(struct async_struct *info)  	local_irq_save(flags); -	if (info->flags & ASYNC_INITIALIZED) { -		free_page(page); -		goto errout; -	} - -	if (!state->port || !state->type) { -		if (info->tty) set_bit(TTY_IO_ERROR, &info->tty->flags); -		free_page(page); -		goto errout; -	} -	if (info->xmit.buf) +	if (state->xmit.buf)  		free_page(page);  	else -		info->xmit.buf = (unsigned char *) page; +		state->xmit.buf = (unsigned char *) page; -#ifdef SIMSERIAL_DEBUG -	printk("startup: ttys%d (irq %d)...", info->line, state->irq); -#endif - -	/* -	 * Allocate the IRQ if necessary -	 */ -	if (state->irq && (!IRQ_ports[state->irq] || -			  !IRQ_ports[state->irq]->next_port)) { -		if (IRQ_ports[state->irq]) { -			retval = -EBUSY; -			goto errout; -		} else -			handler = rs_interrupt_single; - -		retval = request_irq(state->irq, handler, IRQ_T(info), "simserial", NULL); -		if (retval) { -			if (capable(CAP_SYS_ADMIN)) { -				if (info->tty) -					set_bit(TTY_IO_ERROR, -						&info->tty->flags); -				retval = 0; -			} +	if (state->irq) { +		retval = request_irq(state->irq, rs_interrupt_single, 0, +				"simserial", state); +		if (retval)  			goto errout; -		}  	} -	/* -	 * Insert serial port into IRQ chain. -	 */ -	info->prev_port = NULL; -	info->next_port = IRQ_ports[state->irq]; -	if (info->next_port) -		info->next_port->prev_port = info; -	IRQ_ports[state->irq] = info; - -	if (info->tty) clear_bit(TTY_IO_ERROR, &info->tty->flags); - -	info->xmit.head = info->xmit.tail = 0; - -#if 0 -	/* -	 * Set up serial timers... -	 */ -	timer_table[RS_TIMER].expires = jiffies + 2*HZ/100; -	timer_active |= 1 << RS_TIMER; -#endif +	state->xmit.head = state->xmit.tail = 0;  	/*  	 * Set up the tty->alt_speed kludge  	 */ -	if (info->tty) { -		if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI) -			info->tty->alt_speed = 57600; -		if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) -			info->tty->alt_speed = 115200; -		if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI) -			info->tty->alt_speed = 230400; -		if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP) -			info->tty->alt_speed = 460800; -	} - -	info->flags |= ASYNC_INITIALIZED; -	local_irq_restore(flags); -	return 0; +	if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI) +		tty->alt_speed = 57600; +	if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) +		tty->alt_speed = 115200; +	if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI) +		tty->alt_speed = 230400; +	if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP) +		tty->alt_speed = 460800;  errout:  	local_irq_restore(flags); @@ -769,56 +413,11 @@ errout:   */  static int rs_open(struct tty_struct *tty, struct file * filp)  { -	struct async_struct	*info; -	int			retval, line; -	unsigned long		page; +	struct serial_state *info = rs_table + tty->index; +	struct tty_port *port = &info->port; -	line = tty->index; -	if ((line < 0) || (line >= NR_PORTS)) -		return -ENODEV; -	retval = get_async_struct(line, &info); -	if (retval) -		return retval;  	tty->driver_data = info; -	info->tty = tty; - -#ifdef SIMSERIAL_DEBUG -	printk("rs_open %s, count = %d\n", tty->name, info->state->count); -#endif -	info->tty->low_latency = (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0; - -	if (!tmp_buf) { -		page = get_zeroed_page(GFP_KERNEL); -		if (!page) -			return -ENOMEM; -		if (tmp_buf) -			free_page(page); -		else -			tmp_buf = (unsigned char *) page; -	} - -	/* -	 * If the port is the middle of closing, bail out now -	 */ -	if (tty_hung_up_p(filp) || -	    (info->flags & ASYNC_CLOSING)) { -		if (info->flags & ASYNC_CLOSING) -			interruptible_sleep_on(&info->close_wait); -#ifdef SERIAL_DO_RESTART -		return ((info->flags & ASYNC_HUP_NOTIFY) ? -			-EAGAIN : -ERESTARTSYS); -#else -		return -EAGAIN; -#endif -	} - -	/* -	 * Start up serial port -	 */ -	retval = startup(info); -	if (retval) { -		return retval; -	} +	port->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;  	/*  	 * figure out which console to use (should be one already) @@ -829,30 +428,21 @@ static int rs_open(struct tty_struct *tty, struct file * filp)  		console = console->next;  	} -#ifdef SIMSERIAL_DEBUG -	printk("rs_open ttys%d successful\n", info->line); -#endif -	return 0; +	return tty_port_open(port, tty, filp);  }  /*   * /proc fs routines....   */ -static inline void line_info(struct seq_file *m, struct serial_state *state) -{ -	seq_printf(m, "%d: uart:%s port:%lX irq:%d\n", -		       state->line, uart_config[state->type].name, -		       state->port, state->irq); -} -  static int rs_proc_show(struct seq_file *m, void *v)  {  	int i; -	seq_printf(m, "simserinfo:1.0 driver:%s\n", serial_version); +	seq_printf(m, "simserinfo:1.0\n");  	for (i = 0; i < NR_PORTS; i++) -		line_info(m, &rs_table[i]); +		seq_printf(m, "%d: uart:16550 port:3F8 irq:%d\n", +		       i, rs_table[i].irq);  	return 0;  } @@ -869,25 +459,6 @@ static const struct file_operations rs_proc_fops = {  	.release	= single_release,  }; -/* - * --------------------------------------------------------------------- - * rs_init() and friends - * - * rs_init() is called at boot-time to initialize the serial driver. - * --------------------------------------------------------------------- - */ - -/* - * This routine prints out the appropriate serial driver version - * number, and identifies which options were configured into this - * driver. - */ -static inline void show_serial_version(void) -{ -	printk(KERN_INFO "%s version %s with", serial_name, serial_version); -	printk(KERN_INFO " no serial options enabled\n"); -} -  static const struct tty_operations hp_ops = {  	.open = rs_open,  	.close = rs_close, @@ -901,35 +472,31 @@ static const struct tty_operations hp_ops = {  	.throttle = rs_throttle,  	.unthrottle = rs_unthrottle,  	.send_xchar = rs_send_xchar, -	.set_termios = rs_set_termios, -	.stop = rs_stop, -	.start = rs_start,  	.hangup = rs_hangup, -	.wait_until_sent = rs_wait_until_sent,  	.proc_fops = &rs_proc_fops,  }; -/* - * The serial driver boot-time initialization code! - */ -static int __init -simrs_init (void) +static const struct tty_port_operations hp_port_ops = { +	.activate = activate, +	.shutdown = shutdown, +}; + +static int __init simrs_init(void)  { -	int			i, rc; -	struct serial_state	*state; +	struct serial_state *state; +	int retval;  	if (!ia64_platform_is("hpsim"))  		return -ENODEV; -	hp_simserial_driver = alloc_tty_driver(1); +	hp_simserial_driver = alloc_tty_driver(NR_PORTS);  	if (!hp_simserial_driver)  		return -ENOMEM; -	show_serial_version(); +	printk(KERN_INFO "SimSerial driver with no serial options enabled\n");  	/* Initialize the tty_driver structure */ -	hp_simserial_driver->owner = THIS_MODULE;  	hp_simserial_driver->driver_name = "simserial";  	hp_simserial_driver->name = "ttyS";  	hp_simserial_driver->major = TTY_MAJOR; @@ -942,31 +509,35 @@ simrs_init (void)  	hp_simserial_driver->flags = TTY_DRIVER_REAL_RAW;  	tty_set_operations(hp_simserial_driver, &hp_ops); -	/* -	 * Let's have a little bit of fun ! -	 */ -	for (i = 0, state = rs_table; i < NR_PORTS; i++,state++) { +	state = rs_table; +	tty_port_init(&state->port); +	state->port.ops = &hp_port_ops; +	state->port.close_delay = 0; /* XXX really 0? */ -		if (state->type == PORT_UNKNOWN) continue; +	retval = hpsim_get_irq(KEYBOARD_INTR); +	if (retval < 0) { +		printk(KERN_ERR "%s: out of interrupt vectors!\n", +				__func__); +		goto err_free_tty; +	} -		if (!state->irq) { -			if ((rc = assign_irq_vector(AUTO_ASSIGN)) < 0) -				panic("%s: out of interrupt vectors!\n", -				      __func__); -			state->irq = rc; -			ia64_ssc_connect_irq(KEYBOARD_INTR, state->irq); -		} +	state->irq = retval; -		printk(KERN_INFO "ttyS%d at 0x%04lx (irq = %d) is a %s\n", -		       state->line, -		       state->port, state->irq, -		       uart_config[state->type].name); -	} +	/* the port is imaginary */ +	printk(KERN_INFO "ttyS0 at 0x03f8 (irq = %d) is a 16550\n", state->irq); -	if (tty_register_driver(hp_simserial_driver)) -		panic("Couldn't register simserial driver\n"); +	tty_port_link_device(&state->port, hp_simserial_driver, 0); +	retval = tty_register_driver(hp_simserial_driver); +	if (retval) { +		printk(KERN_ERR "Couldn't register simserial driver\n"); +		goto err_free_tty; +	}  	return 0; +err_free_tty: +	put_tty_driver(hp_simserial_driver); +	tty_port_destroy(&state->port); +	return retval;  }  #ifndef MODULE  | 
