⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ide.h

📁 优龙2410linux2.6.8内核源代码
💻 H
字号:
/* * linux/include/asm-arm/arch-sa1100/ide.h * * Copyright (c) 1998 Hugo Fiennes & Nicolas Pitre * * 18-aug-2000: Cleanup by Erik Mouw (J.A.K.Mouw@its.tudelft.nl) *              Get rid of the special ide_init_hwif_ports() functions *              and make a generalised function that can be used by all *              architectures. */#include <linux/config.h>#include <asm/irq.h>#include <asm/hardware.h>#include <asm/mach-types.h>/* * Set up a hw structure for a specified data port, control port and IRQ. * This should follow whatever the default interface uses. */static inline void ide_init_hwif_ports(hw_regs_t *hw, unsigned long data_port,				       unsigned long ctrl_port, int *irq){	unsigned long reg = data_port;	int i;	int regincr = 1;	/* The Empeg board has the first two address lines unused */	if (machine_is_empeg())		regincr = 1 << 2;	/* The LART doesn't use A0 for IDE */	if (machine_is_lart())		regincr = 1 << 1;	memset(hw, 0, sizeof(*hw));	for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {		hw->io_ports[i] = reg;		reg += regincr;	}	hw->io_ports[IDE_CONTROL_OFFSET] = ctrl_port;	if (irq)		*irq = 0;}#ifdef CONFIG_SA1100_TRIZEPS#include <asm/arch/trizeps.h>#endif/* * This registers the standard ports for this architecture with the IDE * driver. */static __inline__ voidide_init_default_hwifs(void){    if( machine_is_empeg() ){#ifdef CONFIG_SA1100_EMPEG	hw_regs_t hw;	/* First, do the SA1100 setup */	/* PCMCIA IO space */	MECR=0x21062106;        /* Issue 3 is much neater than issue 2 */	GPDR&=~(EMPEG_IDE1IRQ|EMPEG_IDE2IRQ);	/* Interrupts on rising edge: lines are inverted before they get to           the SA */	set_GPIO_IRQ_edge( (EMPEG_IDE1IRQ|EMPEG_IDE2IRQ), GPIO_FALLING_EDGE );	/* Take hard drives out of reset */	GPSR=(EMPEG_IDERESET);	/* Sonja and her successors have two IDE ports. */	/* MAC 23/4/1999, swap these round so that the left hand	   hard disk is hda when viewed from the front. This	   doesn't match the silkscreen however. */	ide_init_hwif_ports(&hw, PCMCIA_IO_0_BASE + 0x40, PCMCIA_IO_0_BASE + 0x78, NULL);	hw.irq = EMPEG_IRQ_IDE2;	ide_register_hw(&hw);	ide_init_hwif_ports(&hw, PCMCIA_IO_0_BASE + 0x00, PCMCIA_IO_0_BASE + 0x38, NULL);	hw.irq = ,EMPEG_IRQ_IDE1;	ide_register_hw(&hw);#endif    }    else if( machine_is_victor() ){#ifdef CONFIG_SA1100_VICTOR	hw_regs_t hw;	/* Enable appropriate GPIOs as interrupt lines */	GPDR &= ~GPIO_GPIO7;	set_GPIO_IRQ_edge( GPIO_GPIO7, GPIO_RISING_EDGE );	/* set the pcmcia interface timing */	MECR = 0x00060006;	ide_init_hwif_ports(&hw, PCMCIA_IO_0_BASE + 0x1f0, PCMCIA_IO_0_BASE + 0x3f6, NULL);	hw.irq = IRQ_GPIO7;	ide_register_hw(&hw);#endif    }    else if (machine_is_lart()) {#ifdef CONFIG_SA1100_LART        hw_regs_t hw;        /* Enable GPIO as interrupt line */        GPDR &= ~LART_GPIO_IDE;	set_irq_type(LART_IRQ_IDE, IRQT_RISING);        /* set PCMCIA interface timing */        MECR = 0x00060006;        /* init the interface */	ide_init_hwif_ports(&hw, PCMCIA_IO_0_BASE + 0x0000, PCMCIA_IO_0_BASE + 0x1000, NULL);        hw.irq = LART_IRQ_IDE;        ide_register_hw(&hw);#endif    }    else if( machine_is_trizeps() ){#ifdef CONFIG_SA1100_TRIZEPS	hw_regs_t hw;	/* Enable appropriate GPIOs as interrupt lines */	GPDR &= ~GPIO_GPIO(TRIZEPS_IRQ_IDE);	set_irq_type( TRIZEPS_IRQ_IDE, IRQT_RISING );	/* set the pcmcia interface timing */	//MECR = 0x00060006; // Done on trizeps init	/* Take hard drives out of reset */	GPSR = GPIO_GPIO(TRIZEPS_IRQ_IDE);	ide_init_hwif_ports(&hw, TRIZEPS_IDE_CS0 + 0, TRIZEPS_IDE_CS1 + 6, NULL);	hw.irq = TRIZEPS_IRQ_IDE;	ide_register_hw(&hw, NULL);#endif    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -