hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// SPDX-License-Identifier: GPL-2.0
/*
 * linux/drivers/pcmcia/sa1100_neponset.c
 *
 * Neponset PCMCIA specific routines
 */
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/device.h>
#include <linux/errno.h>
#include <linux/init.h>
 
#include <asm/mach-types.h>
 
#include "sa1111_generic.h"
#include "max1600.h"
 
/*
 * Neponset uses the Maxim MAX1600, with the following connections:
 *
 *   MAX1600      Neponset
 *
 *    A0VCC        SA-1111 GPIO A<1>
 *    A1VCC        SA-1111 GPIO A<0>
 *    A0VPP        CPLD NCR A0VPP
 *    A1VPP        CPLD NCR A1VPP
 *    B0VCC        SA-1111 GPIO A<2>
 *    B1VCC        SA-1111 GPIO A<3>
 *    B0VPP        ground (slot B is CF)
 *    B1VPP        ground (slot B is CF)
 *
 *     VX          VCC (5V)
 *     VY          VCC3_3 (3.3V)
 *     12INA       12V
 *     12INB       ground (slot B is CF)
 *
 * The MAX1600 CODE pin is tied to ground, placing the device in 
 * "Standard Intel code" mode. Refer to the Maxim data sheet for
 * the corresponding truth table.
 */
static int neponset_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
{
   struct max1600 *m;
   int ret;
 
   ret = max1600_init(skt->socket.dev.parent, &m,
              skt->nr ? MAX1600_CHAN_B : MAX1600_CHAN_A,
              MAX1600_CODE_LOW);
   if (ret == 0)
       skt->driver_data = m;
 
   return ret;
}
 
static int
neponset_pcmcia_configure_socket(struct soc_pcmcia_socket *skt, const socket_state_t *state)
{
   struct max1600 *m = skt->driver_data;
   int ret;
 
   ret = sa1111_pcmcia_configure_socket(skt, state);
   if (ret == 0)
       ret = max1600_configure(m, state->Vcc, state->Vpp);
 
   return ret;
}
 
static struct pcmcia_low_level neponset_pcmcia_ops = {
   .owner            = THIS_MODULE,
   .hw_init        = neponset_pcmcia_hw_init,
   .configure_socket    = neponset_pcmcia_configure_socket,
   .first            = 0,
   .nr            = 2,
};
 
int pcmcia_neponset_init(struct sa1111_dev *sadev)
{
   sa11xx_drv_pcmcia_ops(&neponset_pcmcia_ops);
   return sa1111_pcmcia_add(sadev, &neponset_pcmcia_ops,
                sa11xx_drv_pcmcia_add_one);
}