File: mw_eeprom.c

package info (click to toggle)
imsprog 1.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 16,828 kB
  • sloc: cpp: 6,525; ansic: 5,899; xml: 552; sh: 231; makefile: 5
file content (189 lines) | stat: -rw-r--r-- 4,149 bytes parent folder | download
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
 * Copyright (C) 2021 McMCC <mcmcc@mail.ru>
 * mw_eeprom.c
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 */

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>

#include "bitbang_microwire.h"
#include "ch341a_gpio.h"
#include "timer.h"

extern struct gpio_cmd bb_func;
extern char eepromname[12];
extern unsigned int bsize;

/*int mw_eeprom_read(unsigned char *buf, unsigned long from, unsigned long len)
{
	unsigned char *pbuf, ebuf[MAX_MW_EEPROM_SIZE];

	if (len == 0)
		return -1;

	timer_start();
	memset(ebuf, 0, sizeof(ebuf));
	pbuf = ebuf;

	Read_EEPROM_3wire(pbuf, mw_eepromsize);
	memcpy(buf, pbuf + from, len);

	printf("Read [%lu] bytes from [%s] EEPROM address 0x%08lu\n", len, eepromname, from);
	timer_end();

	return (int)len;
}
*/
/*int mw_eeprom_erase(unsigned long offs, unsigned long len)
{
	unsigned char *pbuf, ebuf[MAX_MW_EEPROM_SIZE];

	if (len == 0)
		return -1;

	timer_start();
	memset(ebuf, 0xff, sizeof(ebuf));
	pbuf = ebuf;

	if (offs || len < mw_eepromsize) {
		Read_EEPROM_3wire(pbuf, mw_eepromsize);
		memset(pbuf + offs, 0xff, len);
	}

	Erase_EEPROM_3wire(mw_eepromsize);

	if (offs || len < mw_eepromsize) {
		if (Write_EEPROM_3wire(pbuf, mw_eepromsize) < 0) {
			printf("Failed to erase [%lu] bytes of [%s] EEPROM address 0x%08lu\n", len, eepromname, offs);
			return -1;
		}
	}

	printf("Erased [%lu] bytes of [%s] EEPROM address 0x%08lu\n", len, eepromname, offs);
	timer_end();

	return 0;
}

int mw_eeprom_write(unsigned char *buf, unsigned long to, unsigned long len)
{
	unsigned char *pbuf, ebuf[MAX_MW_EEPROM_SIZE];

	if (len == 0)
		return -1;

	timer_start();
	memset(ebuf, 0xff, sizeof(ebuf));
	pbuf = ebuf;

	if (to || len < mw_eepromsize) {
		Read_EEPROM_3wire(pbuf, mw_eepromsize);
	}
	memcpy(pbuf + to, buf, len);

	Erase_EEPROM_3wire(mw_eepromsize);

	if (Write_EEPROM_3wire(pbuf, mw_eepromsize) < 0) {
		printf("Failed to write [%lu] bytes of [%s] EEPROM address 0x%08lu\n", len, eepromname, to);
		return -1;
	}

	printf("Wrote [%lu] bytes to [%s] EEPROM address 0x%08lu\n", len, eepromname, to);
	timer_end();

	return (int)len;
}
*/
/*
               25xx  93xx
 PIN 22 - D7 - MISO  DO
 PIN 21 - D6 -
 PIN 20 - D5 - MOSI  DI
 PIN 19 - D4 -
 PIN 18 - D3 - CLK   CLK
 PIN 17 - D2 -
 PIN 16 - D1 -
 PIN 15 - D0 - CS    CS
*/

int mw_gpio_init(void)
{
	int ret = 0;

	CLK  = 1 << 3;
	DO   = 1 << 7;
	DI   = 1 << 5;
	CSEL = 1 << 0;

	bb_func.gpio_setdir  = ch341a_gpio_setdir;
	bb_func.gpio_setbits = ch341a_gpio_setbits;
	bb_func.gpio_getbits = ch341a_gpio_getbits;

	if(bb_func.gpio_setdir)
		ret = bb_func.gpio_setdir();
	else
		return -1;

	if(ret < 0)
		return -1;

	return 0;
}

/*static char *__itoa(int a)
{
	char *p, tmp[32];
	p = tmp;
	snprintf(p, sizeof(tmp), "%d", a);
	return p;
}
*/

/*long mw_init(void)
{
	if (mw_eepromsize <= 0) {
		printf("Microwire EEPROM Not Detected!\n");
		return -1;
	}

	if (mw_gpio_init() < 0)
		return -1;

	bsize = 1;

	printf("Microwire EEPROM chip: %s, Size: %d bytes, Org: %d bits, fix addr len: %s\n", eepromname, mw_eepromsize / (org ? 2 : 1),
			org ? 16 : 8, fix_addr_len ? __itoa(fix_addr_len) : "Auto");

	return (long)mw_eepromsize;
}
*/
/*void support_mw_eeprom_list(void)
{
	int i;

	printf("Microwire EEPROM Support List:\n");
	for ( i = 0; i < (sizeof(mw_eepromlist)/sizeof(struct MW_EEPROM)); i++)
	{
		if (!mw_eepromlist[i].size)
			break;
		printf("%03d. %s\n", i + 1, mw_eepromlist[i].name);
	}
}
*/
/* End of [mw_eeprom.c] package */