[BACK]Return to au1000_hydrogen3.c CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / drivers / pcmcia

File: [Development] / linux-2.4-xfs / drivers / pcmcia / au1000_hydrogen3.c (download)

Revision 1.1, Thu Jan 20 13:59:19 2005 UTC (12 years, 8 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD

Merge up to 2.4.29.
Merge of 2.4.x-xfs-melb:linux:21231a by kenmcd.

/*
 *
 * Alchemy Semi Hydrogen III board specific pcmcia routines.
 *
 * based on:
 *
 * Alchemy Semi Hyd1100 board specific pcmcia routines.
 *
 * Copyright 2002 MontaVista Software Inc.
 * Author: MontaVista Software, Inc.
 *         	ppopov@mvista.com or source@mvista.com
 *
 * ########################################################################
 *
 *  This program is free software; you can distribute it and/or modify it
 *  under the terms of the GNU General Public License (Version 2) as
 *  published by the Free Software Foundation.
 *
 *  This program is distributed in the hope it will be useful, but WITHOUT
 *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 *  for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
 *
 * ########################################################################
 *
 * 
 */
#include <linux/module.h>
#include <linux/init.h>
#include <linux/config.h>
#include <linux/delay.h>
#include <linux/ioport.h>
#include <linux/kernel.h>
#include <linux/tqueue.h>
#include <linux/timer.h>
#include <linux/mm.h>
#include <linux/proc_fs.h>
#include <linux/version.h>
#include <linux/types.h>

#include <pcmcia/version.h>
#include <pcmcia/cs_types.h>
#include <pcmcia/cs.h>
#include <pcmcia/ss.h>
#include <pcmcia/bulkmem.h>
#include <pcmcia/cistpl.h>
#include <pcmcia/bus_ops.h>
#include "cs_internal.h"

#include <asm/io.h>
#include <asm/irq.h>
#include <asm/system.h>

#include <asm/au1000.h>
#include <asm/au1000_pcmcia.h>

#include <asm/db1x00.h>

#define PCMCIA_MAX_SOCK 0
//#include <asm/hyd1100.h>


static int hydrogen3_pcmcia_init(struct pcmcia_init *init)
{
	// power up
	writel(0x00020002, GPIO2_OUTPUT); // GPIO_201 CF_PWR
	return 1; // one slot
}

static int hydrogen3_pcmcia_shutdown(void)
{
	// power down
	writel(0x00020000, GPIO2_OUTPUT); // GPIO_201 CF_PWR
	return 0; 
}

static int 
hydrogen3_pcmcia_socket_state(unsigned sock, struct pcmcia_state *state)
{
	u32 inserted;
	inserted = (readl(SYS_PINSTATERD) & (1<<22)) ? 0 : 1; // GPIO_22 is CF_DETECT

	state->ready = 0;
	state->vs_Xv = 0;
	state->vs_3v = 0;
	state->detect = 0;

	if (inserted)
	{
		state->vs_3v=1;
		state->detect = 1;
		state->ready = 1;
	}

	state->bvd1=1;
	state->bvd2=1;
	state->wrprot=0; 
	return 1;
}


static int hydrogen3_pcmcia_get_irq_info(struct pcmcia_irq_info *info)
{

	if(info->sock > PCMCIA_MAX_SOCK) return -1;

	if(info->sock == 0)
		info->irq = AU1000_GPIO_21;
	else 
		info->irq = -1;

	return 0;
}


static int 
hydrogen3_pcmcia_configure_socket(const struct pcmcia_configure *configure)
{
	if(configure->sock > PCMCIA_MAX_SOCK) return -1;

	au_sync_delay(300);

	if (!configure->reset) {
		// de-assert reset
		writel(0x00010000, GPIO2_OUTPUT); // GPIO_200 CF_RESET
		au_sync_delay(100);
	}
	else {
		// assert reset
		writel(0x00010001, GPIO2_OUTPUT); // GPIO_200 CF_RESET
		au_sync_delay(300);
	}
	return 0;
}

struct pcmcia_low_level au1x00_pcmcia_ops = { 
	hydrogen3_pcmcia_init,
	hydrogen3_pcmcia_shutdown,
	hydrogen3_pcmcia_socket_state,
	hydrogen3_pcmcia_get_irq_info,
	hydrogen3_pcmcia_configure_socket
};

struct pcmcia_low_level *
hydrogen3_get_pcmcia_ops(void)
{
	return &au1x00_pcmcia_ops;
};