1 // SPDX-License-Identifier: GPL-2.0-only
3 * arch/arm/mac-sa1100/jornada720_ssp.c
5 * Copyright (C) 2006/2007 Kristoffer Ericson <Kristoffer.Ericson@gmail.com>
6 * Copyright (C) 2006 Filip Zyzniewski <filip.zyzniewski@tefnet.pl>
8 * SSP driver for the HP Jornada 710/720/728
11 #include <linux/delay.h>
12 #include <linux/errno.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
17 #include <linux/sched.h>
20 #include <mach/hardware.h>
21 #include <mach/jornada720.h>
22 #include <asm/hardware/ssp.h>
24 static DEFINE_SPINLOCK(jornada_ssp_lock
);
25 static unsigned long jornada_ssp_flags
;
28 * jornada_ssp_reverse - reverses input byte
30 * we need to reverse all data we receive from the mcu due to its physical location
31 * returns : 01110111 -> 11101110
33 inline u8
jornada_ssp_reverse(u8 byte
)
36 ((0x80 & byte
) >> 7) |
37 ((0x40 & byte
) >> 5) |
38 ((0x20 & byte
) >> 3) |
39 ((0x10 & byte
) >> 1) |
40 ((0x08 & byte
) << 1) |
41 ((0x04 & byte
) << 3) |
42 ((0x02 & byte
) << 5) |
45 EXPORT_SYMBOL(jornada_ssp_reverse
);
48 * jornada_ssp_byte - waits for ready ssp bus and sends byte
50 * waits for fifo buffer to clear and then transmits, if it doesn't then we will
51 * timeout after <timeout> rounds. Needs mcu running before its called.
53 * returns : %mcu output on success
54 * : %-ETIMEDOUT on timeout
56 int jornada_ssp_byte(u8 byte
)
61 while ((GPLR
& GPIO_GPIO10
)) {
63 printk(KERN_WARNING
"SSP: timeout while waiting for transmit\n");
69 ret
= jornada_ssp_reverse(byte
) << 8;
74 return jornada_ssp_reverse(ret
);
76 EXPORT_SYMBOL(jornada_ssp_byte
);
79 * jornada_ssp_inout - decide if input is command or trading byte
81 * returns : (jornada_ssp_byte(byte)) on success
82 * : %-ETIMEDOUT on timeout failure
84 int jornada_ssp_inout(u8 byte
)
88 /* true means command byte */
89 if (byte
!= TXDUMMY
) {
90 ret
= jornada_ssp_byte(byte
);
91 /* Proper return to commands is TxDummy */
93 for (i
= 0; i
< 256; i
++)/* flushing bus */
94 if (jornada_ssp_byte(TXDUMMY
) == -1)
98 } else /* Exchange TxDummy for data */
99 ret
= jornada_ssp_byte(TXDUMMY
);
103 EXPORT_SYMBOL(jornada_ssp_inout
);
106 * jornada_ssp_start - enable mcu
109 void jornada_ssp_start(void)
111 spin_lock_irqsave(&jornada_ssp_lock
, jornada_ssp_flags
);
116 EXPORT_SYMBOL(jornada_ssp_start
);
119 * jornada_ssp_end - disable mcu and turn off lock
122 void jornada_ssp_end(void)
125 spin_unlock_irqrestore(&jornada_ssp_lock
, jornada_ssp_flags
);
128 EXPORT_SYMBOL(jornada_ssp_end
);
130 static int jornada_ssp_probe(struct platform_device
*dev
)
138 /* worked fine, lets not bother with anything else */
140 printk(KERN_INFO
"SSP: device initialized with irq\n");
144 printk(KERN_WARNING
"SSP: initialization failed, trying non-irq solution \n");
146 /* init of Serial 4 port */
151 /* clear out any left over data */
157 /* see if return value makes sense */
158 ret
= jornada_ssp_inout(GETBRIGHTNESS
);
160 /* seems like it worked, just feed it with TxDummy to get rid of data */
162 jornada_ssp_inout(TXDUMMY
);
166 /* failed, lets just kill everything */
167 if (ret
== -ETIMEDOUT
) {
168 printk(KERN_WARNING
"SSP: attempts failed, bailing\n");
174 printk(KERN_INFO
"SSP: device initialized\n");
178 static int jornada_ssp_remove(struct platform_device
*dev
)
180 /* Note that this doesn't actually remove the driver, since theres nothing to remove
181 * It just makes sure everything is turned off */
187 struct platform_driver jornadassp_driver
= {
188 .probe
= jornada_ssp_probe
,
189 .remove
= jornada_ssp_remove
,
191 .name
= "jornada_ssp",
195 static int __init
jornada_ssp_init(void)
197 return platform_driver_register(&jornadassp_driver
);
200 module_init(jornada_ssp_init
);