source: trunk/programmer.h

Last change on this file was 1667, checked in by hailfinger, 6 weeks ago

usleep() is not found in all versions of MinGW, use Sleep() on Windows.
Handle long sleeps on non-Windows correctly.

Signed-off-by: Maksim Kuleshov <mmcx@…>
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@…>
Acked-by: Stefan Tauner <stefan.tauner@…>

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 18.8 KB
Line 
1/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2000 Ronald G. Minnich <rminnich@gmail.com>
6 * Copyright (C) 2005-2009 coresystems GmbH
7 * Copyright (C) 2006-2009 Carl-Daniel Hailfinger
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
22 */
23
24#ifndef __PROGRAMMER_H__
25#define __PROGRAMMER_H__ 1
26
27#include "flash.h"      /* for chipaddr and flashctx */
28
29enum programmer {
30#if CONFIG_INTERNAL == 1
31        PROGRAMMER_INTERNAL,
32#endif
33#if CONFIG_DUMMY == 1
34        PROGRAMMER_DUMMY,
35#endif
36#if CONFIG_NIC3COM == 1
37        PROGRAMMER_NIC3COM,
38#endif
39#if CONFIG_NICREALTEK == 1
40        PROGRAMMER_NICREALTEK,
41#endif
42#if CONFIG_NICNATSEMI == 1
43        PROGRAMMER_NICNATSEMI,
44#endif
45#if CONFIG_GFXNVIDIA == 1
46        PROGRAMMER_GFXNVIDIA,
47#endif
48#if CONFIG_DRKAISER == 1
49        PROGRAMMER_DRKAISER,
50#endif
51#if CONFIG_SATASII == 1
52        PROGRAMMER_SATASII,
53#endif
54#if CONFIG_ATAHPT == 1
55        PROGRAMMER_ATAHPT,
56#endif
57#if CONFIG_FT2232_SPI == 1
58        PROGRAMMER_FT2232_SPI,
59#endif
60#if CONFIG_SERPROG == 1
61        PROGRAMMER_SERPROG,
62#endif
63#if CONFIG_BUSPIRATE_SPI == 1
64        PROGRAMMER_BUSPIRATE_SPI,
65#endif
66#if CONFIG_DEDIPROG == 1
67        PROGRAMMER_DEDIPROG,
68#endif
69#if CONFIG_RAYER_SPI == 1
70        PROGRAMMER_RAYER_SPI,
71#endif
72#if CONFIG_PONY_SPI == 1
73        PROGRAMMER_PONY_SPI,
74#endif
75#if CONFIG_NICINTEL == 1
76        PROGRAMMER_NICINTEL,
77#endif
78#if CONFIG_NICINTEL_SPI == 1
79        PROGRAMMER_NICINTEL_SPI,
80#endif
81#if CONFIG_OGP_SPI == 1
82        PROGRAMMER_OGP_SPI,
83#endif
84#if CONFIG_SATAMV == 1
85        PROGRAMMER_SATAMV,
86#endif
87#if CONFIG_LINUX_SPI == 1
88        PROGRAMMER_LINUX_SPI,
89#endif
90#if CONFIG_USBBLASTER_SPI == 1
91        PROGRAMMER_USBBLASTER_SPI,
92#endif
93        PROGRAMMER_INVALID /* This must always be the last entry. */
94};
95
96enum programmer_type {
97        PCI = 1, /* to detect uninitialized values */
98        USB,
99        OTHER,
100};
101
102struct dev_entry {
103        uint16_t vendor_id;
104        uint16_t device_id;
105        const enum test_state status;
106        const char *vendor_name;
107        const char *device_name;
108};
109
110struct programmer_entry {
111        const char *name;
112        const enum programmer_type type;
113        union {
114                const struct dev_entry *const dev;
115                const char *const note;
116        } devs;
117
118        int (*init) (void);
119
120        void *(*map_flash_region) (const char *descr, unsigned long phys_addr, size_t len);
121        void (*unmap_flash_region) (void *virt_addr, size_t len);
122
123        void (*delay) (int usecs);
124};
125
126extern const struct programmer_entry programmer_table[];
127
128int programmer_init(enum programmer prog, const char *param);
129int programmer_shutdown(void);
130
131enum bitbang_spi_master_type {
132        BITBANG_SPI_INVALID     = 0, /* This must always be the first entry. */
133#if CONFIG_RAYER_SPI == 1
134        BITBANG_SPI_MASTER_RAYER,
135#endif
136#if CONFIG_PONY_SPI == 1
137        BITBANG_SPI_MASTER_PONY,
138#endif
139#if CONFIG_NICINTEL_SPI == 1
140        BITBANG_SPI_MASTER_NICINTEL,
141#endif
142#if CONFIG_INTERNAL == 1
143#if defined(__i386__) || defined(__x86_64__)
144        BITBANG_SPI_MASTER_MCP,
145#endif
146#endif
147#if CONFIG_OGP_SPI == 1
148        BITBANG_SPI_MASTER_OGP,
149#endif
150};
151
152struct bitbang_spi_master {
153        enum bitbang_spi_master_type type;
154
155        /* Note that CS# is active low, so val=0 means the chip is active. */
156        void (*set_cs) (int val);
157        void (*set_sck) (int val);
158        void (*set_mosi) (int val);
159        int (*get_miso) (void);
160        void (*request_bus) (void);
161        void (*release_bus) (void);
162        /* Length of half a clock period in usecs. */
163        unsigned int half_period;
164};
165
166#if NEED_PCI == 1
167struct pci_dev;
168
169/* pcidev.c */
170// FIXME: These need to be local, not global
171extern uint32_t io_base_addr;
172extern struct pci_access *pacc;
173int pci_init_common(void);
174uintptr_t pcidev_readbar(struct pci_dev *dev, int bar);
175struct pci_dev *pcidev_init(const struct dev_entry *devs, int bar);
176/* rpci_write_* are reversible writes. The original PCI config space register
177 * contents will be restored on shutdown.
178 */
179int rpci_write_byte(struct pci_dev *dev, int reg, uint8_t data);
180int rpci_write_word(struct pci_dev *dev, int reg, uint16_t data);
181int rpci_write_long(struct pci_dev *dev, int reg, uint32_t data);
182#endif
183
184#if CONFIG_INTERNAL == 1
185struct penable {
186        uint16_t vendor_id;
187        uint16_t device_id;
188        const enum test_state status;
189        const char *vendor_name;
190        const char *device_name;
191        int (*doit) (struct pci_dev *dev, const char *name);
192};
193
194extern const struct penable chipset_enables[];
195
196enum board_match_phase {
197        P1,
198        P2,
199        P3
200};
201
202struct board_match {
203        /* Any device, but make it sensible, like the ISA bridge. */
204        uint16_t first_vendor;
205        uint16_t first_device;
206        uint16_t first_card_vendor;
207        uint16_t first_card_device;
208
209        /* Any device, but make it sensible, like
210         * the host bridge. May be NULL.
211         */
212        uint16_t second_vendor;
213        uint16_t second_device;
214        uint16_t second_card_vendor;
215        uint16_t second_card_device;
216
217        /* Pattern to match DMI entries. May be NULL. */
218        const char *dmi_pattern;
219
220        /* The vendor / part name from the coreboot table. May be NULL. */
221        const char *lb_vendor;
222        const char *lb_part;
223
224        enum board_match_phase phase;
225
226        const char *vendor_name;
227        const char *board_name;
228
229        int max_rom_decode_parallel;
230        const enum test_state status;
231        int (*enable) (void); /* May be NULL. */
232};
233
234extern const struct board_match board_matches[];
235
236struct board_info {
237        const char *vendor;
238        const char *name;
239        const enum test_state working;
240#ifdef CONFIG_PRINT_WIKI
241        const char *url;
242        const char *note;
243#endif
244};
245
246extern const struct board_info boards_known[];
247extern const struct board_info laptops_known[];
248#endif
249
250/* udelay.c */
251void myusec_delay(int usecs);
252void myusec_calibrate_delay(void);
253void internal_sleep(int usecs);
254void internal_delay(int usecs);
255
256#if CONFIG_INTERNAL == 1
257/* board_enable.c */
258int board_parse_parameter(const char *boardstring, const char **vendor, const char **model);
259void w836xx_ext_enter(uint16_t port);
260void w836xx_ext_leave(uint16_t port);
261void probe_superio_winbond(void);
262int it8705f_write_enable(uint8_t port);
263uint8_t sio_read(uint16_t port, uint8_t reg);
264void sio_write(uint16_t port, uint8_t reg, uint8_t data);
265void sio_mask(uint16_t port, uint8_t reg, uint8_t data, uint8_t mask);
266void board_handle_before_superio(void);
267void board_handle_before_laptop(void);
268int board_flash_enable(const char *vendor, const char *model, const char *cb_vendor, const char *cb_model);
269
270/* chipset_enable.c */
271int chipset_flash_enable(void);
272
273/* processor_enable.c */
274int processor_flash_enable(void);
275#endif
276
277/* physmap.c */
278void *physmap(const char *descr, unsigned long phys_addr, size_t len);
279void *physmap_try_ro(const char *descr, unsigned long phys_addr, size_t len);
280void physunmap(void *virt_addr, size_t len);
281#if CONFIG_INTERNAL == 1
282int setup_cpu_msr(int cpu);
283void cleanup_cpu_msr(void);
284
285/* cbtable.c */
286int cb_parse_table(const char **vendor, const char **model);
287int cb_check_image(uint8_t *bios, int size);
288
289/* dmi.c */
290extern int has_dmi_support;
291void dmi_init(void);
292int dmi_match(const char *pattern);
293
294/* internal.c */
295struct superio {
296        uint16_t vendor;
297        uint16_t port;
298        uint16_t model;
299};
300extern struct superio superios[];
301extern int superio_count;
302#define SUPERIO_VENDOR_NONE     0x0
303#define SUPERIO_VENDOR_ITE      0x1
304#define SUPERIO_VENDOR_WINBOND  0x2
305#endif
306#if NEED_PCI == 1
307struct pci_filter;
308struct pci_dev *pci_dev_find_filter(struct pci_filter filter);
309struct pci_dev *pci_dev_find_vendorclass(uint16_t vendor, uint16_t devclass);
310struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device);
311struct pci_dev *pci_card_find(uint16_t vendor, uint16_t device,
312                              uint16_t card_vendor, uint16_t card_device);
313#endif
314int rget_io_perms(void);
315#if CONFIG_INTERNAL == 1
316extern int is_laptop;
317extern int laptop_ok;
318extern int force_boardenable;
319extern int force_boardmismatch;
320void probe_superio(void);
321int register_superio(struct superio s);
322extern enum chipbustype internal_buses_supported;
323int internal_init(void);
324#endif
325
326/* hwaccess.c */
327void mmio_writeb(uint8_t val, void *addr);
328void mmio_writew(uint16_t val, void *addr);
329void mmio_writel(uint32_t val, void *addr);
330uint8_t mmio_readb(void *addr);
331uint16_t mmio_readw(void *addr);
332uint32_t mmio_readl(void *addr);
333void mmio_readn(void *addr, uint8_t *buf, size_t len);
334void mmio_le_writeb(uint8_t val, void *addr);
335void mmio_le_writew(uint16_t val, void *addr);
336void mmio_le_writel(uint32_t val, void *addr);
337uint8_t mmio_le_readb(void *addr);
338uint16_t mmio_le_readw(void *addr);
339uint32_t mmio_le_readl(void *addr);
340#define pci_mmio_writeb mmio_le_writeb
341#define pci_mmio_writew mmio_le_writew
342#define pci_mmio_writel mmio_le_writel
343#define pci_mmio_readb mmio_le_readb
344#define pci_mmio_readw mmio_le_readw
345#define pci_mmio_readl mmio_le_readl
346void rmmio_writeb(uint8_t val, void *addr);
347void rmmio_writew(uint16_t val, void *addr);
348void rmmio_writel(uint32_t val, void *addr);
349void rmmio_le_writeb(uint8_t val, void *addr);
350void rmmio_le_writew(uint16_t val, void *addr);
351void rmmio_le_writel(uint32_t val, void *addr);
352#define pci_rmmio_writeb rmmio_le_writeb
353#define pci_rmmio_writew rmmio_le_writew
354#define pci_rmmio_writel rmmio_le_writel
355void rmmio_valb(void *addr);
356void rmmio_valw(void *addr);
357void rmmio_vall(void *addr);
358
359/* dummyflasher.c */
360#if CONFIG_DUMMY == 1
361int dummy_init(void);
362void *dummy_map(const char *descr, unsigned long phys_addr, size_t len);
363void dummy_unmap(void *virt_addr, size_t len);
364#endif
365
366/* nic3com.c */
367#if CONFIG_NIC3COM == 1
368int nic3com_init(void);
369extern const struct dev_entry nics_3com[];
370#endif
371
372/* gfxnvidia.c */
373#if CONFIG_GFXNVIDIA == 1
374int gfxnvidia_init(void);
375extern const struct dev_entry gfx_nvidia[];
376#endif
377
378/* drkaiser.c */
379#if CONFIG_DRKAISER == 1
380int drkaiser_init(void);
381extern const struct dev_entry drkaiser_pcidev[];
382#endif
383
384/* nicrealtek.c */
385#if CONFIG_NICREALTEK == 1
386int nicrealtek_init(void);
387extern const struct dev_entry nics_realtek[];
388#endif
389
390/* nicnatsemi.c */
391#if CONFIG_NICNATSEMI == 1
392int nicnatsemi_init(void);
393extern const struct dev_entry nics_natsemi[];
394#endif
395
396/* nicintel.c */
397#if CONFIG_NICINTEL == 1
398int nicintel_init(void);
399extern const struct dev_entry nics_intel[];
400#endif
401
402/* nicintel_spi.c */
403#if CONFIG_NICINTEL_SPI == 1
404int nicintel_spi_init(void);
405extern const struct dev_entry nics_intel_spi[];
406#endif
407
408/* ogp_spi.c */
409#if CONFIG_OGP_SPI == 1
410int ogp_spi_init(void);
411extern const struct dev_entry ogp_spi[];
412#endif
413
414/* satamv.c */
415#if CONFIG_SATAMV == 1
416int satamv_init(void);
417extern const struct dev_entry satas_mv[];
418#endif
419
420/* satasii.c */
421#if CONFIG_SATASII == 1
422int satasii_init(void);
423extern const struct dev_entry satas_sii[];
424#endif
425
426/* atahpt.c */
427#if CONFIG_ATAHPT == 1
428int atahpt_init(void);
429extern const struct dev_entry ata_hpt[];
430#endif
431
432/* ft2232_spi.c */
433#if CONFIG_FT2232_SPI == 1
434int ft2232_spi_init(void);
435extern const struct dev_entry devs_ft2232spi[];
436#endif
437
438/* usbblaster_spi.c */
439#if CONFIG_USBBLASTER_SPI == 1
440int usbblaster_spi_init(void);
441extern const struct dev_entry devs_usbblasterspi[];
442#endif
443
444/* rayer_spi.c */
445#if CONFIG_RAYER_SPI == 1
446int rayer_spi_init(void);
447#endif
448
449/* pony_spi.c */
450#if CONFIG_PONY_SPI == 1
451int pony_spi_init(void);
452#endif
453
454/* bitbang_spi.c */
455int bitbang_spi_init(const struct bitbang_spi_master *master);
456
457/* buspirate_spi.c */
458#if CONFIG_BUSPIRATE_SPI == 1
459int buspirate_spi_init(void);
460#endif
461
462/* linux_spi.c */
463#if CONFIG_LINUX_SPI == 1
464int linux_spi_init(void);
465#endif
466
467/* dediprog.c */
468#if CONFIG_DEDIPROG == 1
469int dediprog_init(void);
470#endif
471
472/* flashrom.c */
473struct decode_sizes {
474        uint32_t parallel;
475        uint32_t lpc;
476        uint32_t fwh;
477        uint32_t spi;
478};
479// FIXME: These need to be local, not global
480extern struct decode_sizes max_rom_decode;
481extern int programmer_may_write;
482extern unsigned long flashbase;
483void check_chip_supported(const struct flashchip *chip);
484int check_max_decode(enum chipbustype buses, uint32_t size);
485char *extract_programmer_param(const char *param_name);
486
487/* spi.c */
488enum spi_controller {
489        SPI_CONTROLLER_NONE,
490#if CONFIG_INTERNAL == 1
491#if defined(__i386__) || defined(__x86_64__)
492        SPI_CONTROLLER_ICH7,
493        SPI_CONTROLLER_ICH9,
494        SPI_CONTROLLER_IT85XX,
495        SPI_CONTROLLER_IT87XX,
496        SPI_CONTROLLER_SB600,
497        SPI_CONTROLLER_VIA,
498        SPI_CONTROLLER_WBSIO,
499#endif
500#endif
501#if CONFIG_FT2232_SPI == 1
502        SPI_CONTROLLER_FT2232,
503#endif
504#if CONFIG_DUMMY == 1
505        SPI_CONTROLLER_DUMMY,
506#endif
507#if CONFIG_BUSPIRATE_SPI == 1
508        SPI_CONTROLLER_BUSPIRATE,
509#endif
510#if CONFIG_DEDIPROG == 1
511        SPI_CONTROLLER_DEDIPROG,
512#endif
513#if CONFIG_OGP_SPI == 1 || CONFIG_NICINTEL_SPI == 1 || CONFIG_RAYER_SPI == 1 || CONFIG_PONY_SPI == 1 || (CONFIG_INTERNAL == 1 && (defined(__i386__) || defined(__x86_64__)))
514        SPI_CONTROLLER_BITBANG,
515#endif
516#if CONFIG_LINUX_SPI == 1
517        SPI_CONTROLLER_LINUX,
518#endif
519#if CONFIG_SERPROG == 1
520        SPI_CONTROLLER_SERPROG,
521#endif
522#if CONFIG_USBBLASTER_SPI == 1
523        SPI_CONTROLLER_USBBLASTER,
524#endif
525};
526
527#define MAX_DATA_UNSPECIFIED 0
528#define MAX_DATA_READ_UNLIMITED 64 * 1024
529#define MAX_DATA_WRITE_UNLIMITED 256
530struct spi_programmer {
531        enum spi_controller type;
532        unsigned int max_data_read;
533        unsigned int max_data_write;
534        int (*command)(struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
535                   const unsigned char *writearr, unsigned char *readarr);
536        int (*multicommand)(struct flashctx *flash, struct spi_command *cmds);
537
538        /* Optimized functions for this programmer */
539        int (*read)(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
540        int (*write_256)(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
541        int (*write_aai)(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
542        const void *data;
543};
544
545int default_spi_send_command(struct flashctx *flash, unsigned int writecnt, unsigned int readcnt,
546                             const unsigned char *writearr, unsigned char *readarr);
547int default_spi_send_multicommand(struct flashctx *flash, struct spi_command *cmds);
548int default_spi_read(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
549int default_spi_write_256(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
550int default_spi_write_aai(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
551int register_spi_programmer(const struct spi_programmer *programmer);
552
553/* The following enum is needed by ich_descriptor_tool and ich* code. */
554enum ich_chipset {
555        CHIPSET_ICH_UNKNOWN,
556        CHIPSET_ICH7 = 7,
557        CHIPSET_ICH8,
558        CHIPSET_ICH9,
559        CHIPSET_ICH10,
560        CHIPSET_5_SERIES_IBEX_PEAK,
561        CHIPSET_6_SERIES_COUGAR_POINT,
562        CHIPSET_7_SERIES_PANTHER_POINT,
563        CHIPSET_8_SERIES_LYNX_POINT,
564        CHIPSET_8_SERIES_LYNX_POINT_LP,
565        CHIPSET_8_SERIES_WELLSBURG,
566};
567
568/* ichspi.c */
569#if CONFIG_INTERNAL == 1
570extern uint32_t ichspi_bbar;
571int ich_init_spi(struct pci_dev *dev, uint32_t base, void *rcrb,
572                 enum ich_chipset ich_generation);
573int via_init_spi(struct pci_dev *dev, uint32_t mmio_base);
574
575/* it85spi.c */
576int it85xx_spi_init(struct superio s);
577
578/* it87spi.c */
579void enter_conf_mode_ite(uint16_t port);
580void exit_conf_mode_ite(uint16_t port);
581void probe_superio_ite(void);
582int init_superio_ite(void);
583
584/* mcp6x_spi.c */
585int mcp6x_spi_init(int want_spi);
586
587/* sb600spi.c */
588int sb600_probe_spi(struct pci_dev *dev);
589
590/* wbsio_spi.c */
591int wbsio_check_for_spi(void);
592#endif
593
594/* opaque.c */
595struct opaque_programmer {
596        int max_data_read;
597        int max_data_write;
598        /* Specific functions for this programmer */
599        int (*probe) (struct flashctx *flash);
600        int (*read) (struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
601        int (*write) (struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
602        int (*erase) (struct flashctx *flash, unsigned int blockaddr, unsigned int blocklen);
603        const void *data;
604};
605int register_opaque_programmer(const struct opaque_programmer *pgm);
606
607/* programmer.c */
608int noop_shutdown(void);
609void *fallback_map(const char *descr, unsigned long phys_addr, size_t len);
610void fallback_unmap(void *virt_addr, size_t len);
611void noop_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr);
612void fallback_chip_writew(const struct flashctx *flash, uint16_t val, chipaddr addr);
613void fallback_chip_writel(const struct flashctx *flash, uint32_t val, chipaddr addr);
614void fallback_chip_writen(const struct flashctx *flash, uint8_t *buf, chipaddr addr, size_t len);
615uint16_t fallback_chip_readw(const struct flashctx *flash, const chipaddr addr);
616uint32_t fallback_chip_readl(const struct flashctx *flash, const chipaddr addr);
617void fallback_chip_readn(const struct flashctx *flash, uint8_t *buf, const chipaddr addr, size_t len);
618struct par_programmer {
619        void (*chip_writeb) (const struct flashctx *flash, uint8_t val, chipaddr addr);
620        void (*chip_writew) (const struct flashctx *flash, uint16_t val, chipaddr addr);
621        void (*chip_writel) (const struct flashctx *flash, uint32_t val, chipaddr addr);
622        void (*chip_writen) (const struct flashctx *flash, uint8_t *buf, chipaddr addr, size_t len);
623        uint8_t (*chip_readb) (const struct flashctx *flash, const chipaddr addr);
624        uint16_t (*chip_readw) (const struct flashctx *flash, const chipaddr addr);
625        uint32_t (*chip_readl) (const struct flashctx *flash, const chipaddr addr);
626        void (*chip_readn) (const struct flashctx *flash, uint8_t *buf, const chipaddr addr, size_t len);
627        const void *data;
628};
629int register_par_programmer(const struct par_programmer *pgm, const enum chipbustype buses);
630struct registered_programmer {
631        enum chipbustype buses_supported;
632        union {
633                struct par_programmer par;
634                struct spi_programmer spi;
635                struct opaque_programmer opaque;
636        };
637};
638extern struct registered_programmer registered_programmers[];
639extern int registered_programmer_count;
640int register_programmer(struct registered_programmer *pgm);
641
642/* serprog.c */
643#if CONFIG_SERPROG == 1
644int serprog_init(void);
645void serprog_delay(int usecs);
646#endif
647
648/* serial.c */
649#ifdef _WIN32
650typedef HANDLE fdtype;
651#define SER_INV_FD      INVALID_HANDLE_VALUE
652#else
653typedef int fdtype;
654#define SER_INV_FD      -1
655#endif
656
657void sp_flush_incoming(void);
658fdtype sp_openserport(char *dev, unsigned int baud);
659void __attribute__((noreturn)) sp_die(char *msg);
660extern fdtype sp_fd;
661/* expose serialport_shutdown as it's currently used by buspirate */
662int serialport_shutdown(void *data);
663int serialport_write(unsigned char *buf, unsigned int writecnt);
664int serialport_write_nonblock(unsigned char *buf, unsigned int writecnt, unsigned int timeout, unsigned int *really_wrote);
665int serialport_read(unsigned char *buf, unsigned int readcnt);
666int serialport_read_nonblock(unsigned char *c, unsigned int readcnt, unsigned int timeout, unsigned int *really_read);
667
668/* Serial port/pin mapping:
669
670  1     CD      <-
671  2     RXD     <-
672  3     TXD     ->
673  4     DTR     ->
674  5     GND     --
675  6     DSR     <-
676  7     RTS     ->
677  8     CTS     <-
678  9     RI      <-
679*/
680enum SP_PIN {
681        PIN_CD = 1,
682        PIN_RXD,
683        PIN_TXD,
684        PIN_DTR,
685        PIN_GND,
686        PIN_DSR,
687        PIN_RTS,
688        PIN_CTS,
689        PIN_RI,
690};
691
692void sp_set_pin(enum SP_PIN pin, int val);
693int sp_get_pin(enum SP_PIN pin);
694
695#endif                          /* !__PROGRAMMER_H__ */
Note: See TracBrowser for help on using the repository browser.