blob: 37f2549ef2dd52af236489509abfabab7d458a45 [file] [log] [blame]
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Urja Rannikko <urjaman@gmail.com>
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +00005 * Copyright (C) 2009,2010 Carl-Daniel Hailfinger
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <stdio.h>
23#include <stdlib.h>
24#include <unistd.h>
25#include "flash.h"
26#include <string.h>
27#include <ctype.h>
28#include <fcntl.h>
29#include <sys/types.h>
30#include <sys/stat.h>
31#include <errno.h>
32#include <inttypes.h>
Patrick Georgie48654c2010-01-06 22:14:39 +000033#ifdef _WIN32
34#include <conio.h>
35#else
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +000036#include <termios.h>
Patrick Georgie48654c2010-01-06 22:14:39 +000037#endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +000038
Patrick Georgie48654c2010-01-06 22:14:39 +000039fdtype sp_fd;
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +000040
41void __attribute__((noreturn)) sp_die(char *msg)
42{
43 perror(msg);
44 exit(1);
45}
46
Patrick Georgie48654c2010-01-06 22:14:39 +000047#ifndef _WIN32
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +000048struct baudentry {
49 int flag;
50 unsigned int baud;
51};
52
53/* I'd like if the C preprocessor could have directives in macros */
54#define BAUDENTRY(baud) { B##baud, baud },
55static const struct baudentry sp_baudtable[] = {
56 BAUDENTRY(9600)
57 BAUDENTRY(19200)
58 BAUDENTRY(38400)
59 BAUDENTRY(57600)
60 BAUDENTRY(115200)
61#ifdef B230400
62 BAUDENTRY(230400)
63#endif
64#ifdef B460800
65 BAUDENTRY(460800)
66#endif
67#ifdef B500000
68 BAUDENTRY(500000)
69#endif
70#ifdef B576000
71 BAUDENTRY(576000)
72#endif
73#ifdef B921600
74 BAUDENTRY(921600)
75#endif
76#ifdef B1000000
77 BAUDENTRY(1000000)
78#endif
79#ifdef B1152000
80 BAUDENTRY(1152000)
81#endif
82#ifdef B1500000
83 BAUDENTRY(1500000)
84#endif
85#ifdef B2000000
86 BAUDENTRY(2000000)
87#endif
88#ifdef B2500000
89 BAUDENTRY(2500000)
90#endif
91#ifdef B3000000
92 BAUDENTRY(3000000)
93#endif
94#ifdef B3500000
95 BAUDENTRY(3500000)
96#endif
97#ifdef B4000000
98 BAUDENTRY(4000000)
99#endif
100 {0, 0} /* Terminator */
101};
Patrick Georgie48654c2010-01-06 22:14:39 +0000102#endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000103
Patrick Georgie48654c2010-01-06 22:14:39 +0000104fdtype sp_openserport(char *dev, unsigned int baud)
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000105{
Patrick Georgie48654c2010-01-06 22:14:39 +0000106#ifdef _WIN32
107 HANDLE fd;
Uwe Hermann43959702010-03-13 17:28:29 +0000108 char *dev2 = dev;
109 if ((strlen(dev) > 3) && (tolower(dev[0]) == 'c')
110 && (tolower(dev[1]) == 'o') && (tolower(dev[2]) == 'm')) {
111 dev2 = malloc(strlen(dev) + 5);
Patrick Georgi06602c22010-01-26 20:58:40 +0000112 strcpy(dev2, "\\\\.\\");
Uwe Hermann43959702010-03-13 17:28:29 +0000113 strcpy(dev2 + 4, dev);
Patrick Georgi06602c22010-01-26 20:58:40 +0000114 }
Uwe Hermann43959702010-03-13 17:28:29 +0000115 fd = CreateFile(dev2, GENERIC_READ | GENERIC_WRITE, 0, NULL,
116 OPEN_EXISTING, 0, NULL);
Patrick Georgi06602c22010-01-26 20:58:40 +0000117 if (dev2 != dev)
118 free(dev2);
Patrick Georgie48654c2010-01-06 22:14:39 +0000119 if (fd == INVALID_HANDLE_VALUE) {
120 sp_die("Error: cannot open serial port");
121 }
122 DCB dcb;
123 if (!GetCommState(fd, &dcb)) {
124 sp_die("Error: Could not fetch serial port configuration");
125 }
126 switch (baud) {
127 case 9600: dcb.BaudRate = CBR_9600; break;
128 case 19200: dcb.BaudRate = CBR_19200; break;
129 case 38400: dcb.BaudRate = CBR_38400; break;
130 case 57600: dcb.BaudRate = CBR_57600; break;
131 case 115200: dcb.BaudRate = CBR_115200; break;
132 default: sp_die("Error: Could not set baud rate");
133 }
Uwe Hermann43959702010-03-13 17:28:29 +0000134 dcb.ByteSize = 8;
135 dcb.Parity = NOPARITY;
136 dcb.StopBits = ONESTOPBIT;
Patrick Georgie48654c2010-01-06 22:14:39 +0000137 if (!SetCommState(fd, &dcb)) {
138 sp_die("Error: Could not change serial port configuration");
139 }
140 return fd;
141#else
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000142 struct termios options;
143 int fd, i;
144 fd = open(dev, O_RDWR | O_NOCTTY | O_NDELAY);
145 if (fd < 0)
146 sp_die("Error: cannot open serial port");
147 fcntl(fd, F_SETFL, 0);
148 tcgetattr(fd, &options);
149 for (i = 0;; i++) {
150 if (sp_baudtable[i].baud == 0) {
151 close(fd);
Uwe Hermann43959702010-03-13 17:28:29 +0000152 msg_perr("Error: cannot configure for baudrate %d\n",
153 baud);
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000154 exit(1);
155 }
156 if (sp_baudtable[i].baud == baud) {
157 cfsetispeed(&options, sp_baudtable[i].flag);
158 cfsetospeed(&options, sp_baudtable[i].flag);
159 break;
160 }
161 }
162 options.c_cflag &= ~(PARENB | CSTOPB | CSIZE | CRTSCTS);
163 options.c_cflag |= (CS8 | CLOCAL | CREAD);
164 options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
165 options.c_iflag &= ~(IXON | IXOFF | IXANY | ICRNL | IGNCR | INLCR);
166 options.c_oflag &= ~OPOST;
167 tcsetattr(fd, TCSANOW, &options);
168 return fd;
Patrick Georgie48654c2010-01-06 22:14:39 +0000169#endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000170}
171
172void sp_flush_incoming(void)
173{
Patrick Georgie48654c2010-01-06 22:14:39 +0000174#ifdef _WIN32
175 PurgeComm(sp_fd, PURGE_RXCLEAR);
176#else
Patrick Georgi3b6237d2010-01-06 19:09:40 +0000177 tcflush(sp_fd, TCIFLUSH);
Patrick Georgie48654c2010-01-06 22:14:39 +0000178#endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000179 return;
180}
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +0000181
182int serialport_shutdown(void)
183{
Patrick Georgie48654c2010-01-06 22:14:39 +0000184#ifdef _WIN32
185 CloseHandle(sp_fd);
186#else
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +0000187 close(sp_fd);
Patrick Georgie48654c2010-01-06 22:14:39 +0000188#endif
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +0000189 return 0;
190}
191
192int serialport_write(unsigned char *buf, unsigned int writecnt)
193{
Patrick Georgie48654c2010-01-06 22:14:39 +0000194 long tmp = 0;
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +0000195
Patrick Georgi3b6237d2010-01-06 19:09:40 +0000196 while (writecnt > 0) {
Patrick Georgie48654c2010-01-06 22:14:39 +0000197#ifdef _WIN32
198 WriteFile(sp_fd, buf, writecnt, &tmp, NULL);
199#else
Patrick Georgi3b6237d2010-01-06 19:09:40 +0000200 tmp = write(sp_fd, buf, writecnt);
Patrick Georgie48654c2010-01-06 22:14:39 +0000201#endif
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +0000202 if (tmp == -1)
203 return 1;
204 if (!tmp)
Sean Nelsonebb4f5f2010-01-09 23:46:39 +0000205 msg_pdbg("Empty write\n");
Patrick Georgi3b6237d2010-01-06 19:09:40 +0000206 writecnt -= tmp;
207 buf += tmp;
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +0000208 }
209
210 return 0;
211}
212
213int serialport_read(unsigned char *buf, unsigned int readcnt)
214{
Patrick Georgie48654c2010-01-06 22:14:39 +0000215 long tmp = 0;
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +0000216
Patrick Georgi3b6237d2010-01-06 19:09:40 +0000217 while (readcnt > 0) {
Patrick Georgie48654c2010-01-06 22:14:39 +0000218#ifdef _WIN32
219 ReadFile(sp_fd, buf, readcnt, &tmp, NULL);
220#else
Patrick Georgi3b6237d2010-01-06 19:09:40 +0000221 tmp = read(sp_fd, buf, readcnt);
Patrick Georgie48654c2010-01-06 22:14:39 +0000222#endif
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +0000223 if (tmp == -1)
224 return 1;
225 if (!tmp)
Sean Nelsonebb4f5f2010-01-09 23:46:39 +0000226 msg_pdbg("Empty read\n");
Patrick Georgi3b6237d2010-01-06 19:09:40 +0000227 readcnt -= tmp;
228 buf += tmp;
Carl-Daniel Hailfingerefa151e2010-01-06 16:09:10 +0000229 }
230
231 return 0;
232}