Release 4.12 drivers/pcmcia/sa1111_jornada720.c
  
  
  
/*
 * drivers/pcmcia/sa1100_jornada720.c
 *
 * Jornada720 PCMCIA specific routines
 *
 */
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/device.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/io.h>
#include <mach/hardware.h>
#include <asm/hardware/sa1111.h>
#include <asm/mach-types.h>
#include "sa1111_generic.h"
/* Does SOCKET1_3V actually do anything? */
#define SOCKET0_POWER	GPIO_GPIO0
#define SOCKET0_3V	GPIO_GPIO2
#define SOCKET1_POWER	(GPIO_GPIO1 | GPIO_GPIO3)
#define SOCKET1_3V	GPIO_GPIO3
static int
jornada720_pcmcia_configure_socket(struct soc_pcmcia_socket *skt, const socket_state_t *state)
{
	struct sa1111_pcmcia_socket *s = to_skt(skt);
	unsigned int pa_dwr_mask, pa_dwr_set;
	int ret;
	printk(KERN_INFO "%s(): config socket %d vcc %d vpp %d\n", __func__,
		skt->nr, state->Vcc, state->Vpp);
	switch (skt->nr) {
	case 0:
		pa_dwr_mask = SOCKET0_POWER | SOCKET0_3V;
		switch (state->Vcc) {
		default:
		case  0:
			pa_dwr_set = 0;
			break;
		case 33:
			pa_dwr_set = SOCKET0_POWER | SOCKET0_3V;
			break;
		case 50:
			pa_dwr_set = SOCKET0_POWER;
			break;
		}
		break;
	case 1:
		pa_dwr_mask = SOCKET1_POWER;
		switch (state->Vcc) {
		default:
		case 0:
			pa_dwr_set = 0;
			break;
		case 33:
			pa_dwr_set = SOCKET1_POWER;
			break;
		case 50:
			pa_dwr_set = SOCKET1_POWER;
			break;
		}
		break;
	default:
		return -1;
	}
	if (state->Vpp != state->Vcc && state->Vpp != 0) {
		printk(KERN_ERR "%s(): slot cannot support VPP %u\n",
			__func__, state->Vpp);
		return -EPERM;
	}
	ret = sa1111_pcmcia_configure_socket(skt, state);
	if (ret == 0)
		sa1111_set_io(s->dev, pa_dwr_mask, pa_dwr_set);
	return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 115 | 53.00% | 1 | 9.09% | 
| Russell King | 90 | 41.47% | 6 | 54.55% | 
| Michael Gernoth | 7 | 3.23% | 1 | 9.09% | 
| Kristoffer Ericson | 2 | 0.92% | 1 | 9.09% | 
| Harvey Harrison | 2 | 0.92% | 1 | 9.09% | 
| Nico Pitre | 1 | 0.46% | 1 | 9.09% | 
| Total | 217 | 100.00% | 11 | 100.00% | 
static struct pcmcia_low_level jornada720_pcmcia_ops = {
	.owner			= THIS_MODULE,
	.configure_socket	= jornada720_pcmcia_configure_socket,
	.first			= 0,
	.nr			= 2,
};
int pcmcia_jornada720_init(struct sa1111_dev *sadev)
{
	unsigned int pin = GPIO_A0 | GPIO_A1 | GPIO_A2 | GPIO_A3;
	/* Fixme: why messing around with SA11x0's GPIO1? */
	GRER |= 0x00000002;
	/* Set GPIO_A<3:1> to be outputs for PCMCIA/CF power controller: */
	sa1111_set_io_dir(sadev, pin, 0, 0);
	sa1111_set_io(sadev, pin, 0);
	sa1111_set_sleep_io(sadev, pin, 0);
	sa11xx_drv_pcmcia_ops(&jornada720_pcmcia_ops);
	return sa1111_pcmcia_add(sadev, &jornada720_pcmcia_ops,
				 sa11xx_drv_pcmcia_add_one);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Russell King | 68 | 91.89% | 6 | 75.00% | 
| Arnd Bergmann | 4 | 5.41% | 1 | 12.50% | 
| Dmitry Baryshkov | 2 | 2.70% | 1 | 12.50% | 
| Total | 74 | 100.00% | 8 | 100.00% | 
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Russell King | 196 | 53.55% | 11 | 61.11% | 
| Linus Torvalds | 148 | 40.44% | 1 | 5.56% | 
| Michael Gernoth | 7 | 1.91% | 1 | 5.56% | 
| Arnd Bergmann | 7 | 1.91% | 1 | 5.56% | 
| Kristoffer Ericson | 3 | 0.82% | 1 | 5.56% | 
| Harvey Harrison | 2 | 0.55% | 1 | 5.56% | 
| Dmitry Baryshkov | 2 | 0.55% | 1 | 5.56% | 
| Nico Pitre | 1 | 0.27% | 1 | 5.56% | 
| Total | 366 | 100.00% | 18 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.