source: trunk/bitbang_spi.c

Last change on this file was 1646, checked in by stefanct, 5 months ago

Fix duplicate 'const' declaration specifiers.

Thanks to Idwer and clang for noticing these problems.

Signed-off-by: Stefan Tauner <stefan.tauner@…>
Signed-off-by: Idwer Vollering <vidwer@…>
Acked-by: Stefan Tauner <stefan.tauner@…>

File size: 4.8 KB
Line 
1/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18 */
19
20#include <stdio.h>
21#include <string.h>
22#include <stdlib.h>
23#include <ctype.h>
24#include "flash.h"
25#include "programmer.h"
26#include "spi.h"
27
28/* Note that CS# is active low, so val=0 means the chip is active. */
29static void bitbang_spi_set_cs(const struct bitbang_spi_master * const master, int val)
30{
31        master->set_cs(val);
32}
33
34static void bitbang_spi_set_sck(const struct bitbang_spi_master * const master, int val)
35{
36        master->set_sck(val);
37}
38
39static void bitbang_spi_set_mosi(const struct bitbang_spi_master * const master, int val)
40{
41        master->set_mosi(val);
42}
43
44static int bitbang_spi_get_miso(const struct bitbang_spi_master * const master)
45{
46        return master->get_miso();
47}
48
49static void bitbang_spi_request_bus(const struct bitbang_spi_master * const master)
50{
51        if (master->request_bus)
52                master->request_bus();
53}
54
55static void bitbang_spi_release_bus(const struct bitbang_spi_master * const master)
56{
57        if (master->release_bus)
58                master->release_bus();
59}
60
61static int bitbang_spi_send_command(struct flashctx *flash,
62                                    unsigned int writecnt, unsigned int readcnt,
63                                    const unsigned char *writearr,
64                                    unsigned char *readarr);
65
66static const struct spi_programmer spi_programmer_bitbang = {
67        .type           = SPI_CONTROLLER_BITBANG,
68        .max_data_read  = MAX_DATA_READ_UNLIMITED,
69        .max_data_write = MAX_DATA_WRITE_UNLIMITED,
70        .command        = bitbang_spi_send_command,
71        .multicommand   = default_spi_send_multicommand,
72        .read           = default_spi_read,
73        .write_256      = default_spi_write_256,
74        .write_aai      = default_spi_write_aai,
75};
76
77#if 0 // until it is needed
78static int bitbang_spi_shutdown(const struct bitbang_spi_master *master)
79{
80        /* FIXME: Run bitbang_spi_release_bus here or per command? */
81        return 0;
82}
83#endif
84
85int bitbang_spi_init(const struct bitbang_spi_master *master)
86{
87        struct spi_programmer pgm = spi_programmer_bitbang;
88        /* BITBANG_SPI_INVALID is 0, so if someone forgot to initialize ->type,
89         * we catch it here. Same goes for missing initialization of bitbanging
90         * functions.
91         */
92        if (!master || master->type == BITBANG_SPI_INVALID || !master->set_cs ||
93            !master->set_sck || !master->set_mosi || !master->get_miso ||
94            (master->request_bus && !master->release_bus) ||
95            (!master->request_bus && master->release_bus)) {
96                msg_perr("Incomplete SPI bitbang master setting!\n"
97                         "Please report a bug at flashrom@flashrom.org\n");
98                return ERROR_FLASHROM_BUG;
99        }
100
101        pgm.data = master;
102        register_spi_programmer(&pgm);
103
104        /* Only mess with the bus if we're sure nobody else uses it. */
105        bitbang_spi_request_bus(master);
106        bitbang_spi_set_cs(master, 1);
107        bitbang_spi_set_sck(master, 0);
108        bitbang_spi_set_mosi(master, 0);
109        /* FIXME: Release SPI bus here and request it again for each command or
110         * don't release it now and only release it on programmer shutdown?
111         */
112        bitbang_spi_release_bus(master);
113        return 0;
114}
115
116static uint8_t bitbang_spi_rw_byte(const struct bitbang_spi_master *master,
117                                   uint8_t val)
118{
119        uint8_t ret = 0;
120        int i;
121
122        for (i = 7; i >= 0; i--) {
123                bitbang_spi_set_mosi(master, (val >> i) & 1);
124                programmer_delay(master->half_period);
125                bitbang_spi_set_sck(master, 1);
126                ret <<= 1;
127                ret |= bitbang_spi_get_miso(master);
128                programmer_delay(master->half_period);
129                bitbang_spi_set_sck(master, 0);
130        }
131        return ret;
132}
133
134static int bitbang_spi_send_command(struct flashctx *flash,
135                                    unsigned int writecnt, unsigned int readcnt,
136                                    const unsigned char *writearr,
137                                    unsigned char *readarr)
138{
139        int i;
140        const struct bitbang_spi_master *master = flash->pgm->spi.data;
141
142        /* FIXME: Run bitbang_spi_request_bus here or in programmer init?
143         * Requesting and releasing the SPI bus is handled in here to allow the
144         * programmer to use its own SPI engine for native accesses.
145         */
146        bitbang_spi_request_bus(master);
147        bitbang_spi_set_cs(master, 0);
148        for (i = 0; i < writecnt; i++)
149                bitbang_spi_rw_byte(master, writearr[i]);
150        for (i = 0; i < readcnt; i++)
151                readarr[i] = bitbang_spi_rw_byte(master, 0);
152
153        programmer_delay(master->half_period);
154        bitbang_spi_set_cs(master, 1);
155        programmer_delay(master->half_period);
156        /* FIXME: Run bitbang_spi_release_bus here or in programmer init? */
157        bitbang_spi_release_bus(master);
158
159        return 0;
160}
Note: See TracBrowser for help on using the repository browser.