-
Notifications
You must be signed in to change notification settings - Fork 4
/
pcanhw.c
126 lines (98 loc) · 2.55 KB
/
pcanhw.c
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
/*
* pcanhw.c - flash program for PCAN routers
*
* Copyright (C) 2021 PEAK System-Technik GmbH
*
* www.peak-system.com
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Author: Oliver Hartkopp ([email protected])
* Maintainer(s): Stephane Grosjean ([email protected])
*
*/
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "pcanhw.h"
#include "pcanfunc.h"
/* flash block layouts */
#include "flash_types.h"
/* hardware type descriptions */
#include "hardware_types.h"
const hw_t *get_hw(uint8_t hw_type)
{
if (hw_type > (sizeof(hwtab)/sizeof(*hwtab)) - 1)
return NULL; /* unknown */
return hwtab[hw_type];
}
uint32_t get_crc_startpos(uint8_t hw_type)
{
const hw_t *hwt = get_hw(hw_type);
if (hwt)
return hwt->crc_startpos;
return 0; /* disabled */
}
uint32_t get_flash_offset(uint8_t hw_type)
{
const hw_t *hwt = get_hw(hw_type);
if (hwt)
return hwt->flash_offset;
return 0; /* disabled */
}
uint32_t get_file_skip(uint8_t hw_type)
{
const hw_t *hwt = get_hw(hw_type);
if (hwt)
return hwt->file_skip;
return 0; /* default */
}
uint32_t get_max_blocksize(uint8_t hw_type)
{
const hw_t *hwt = get_hw(hw_type);
if (hwt)
return hwt->max_blocksize;
return 0; /* disabled */
}
uint32_t has_hw_flags(uint8_t hw_type, const uint32_t flags)
{
const hw_t *hwt = get_hw(hw_type);
if (hwt)
return hwt->flags & flags;
return 0; /* disabled by default */
}
const char *get_hw_name(uint8_t hw_type)
{
const hw_t *hwt = get_hw(hw_type);
if (hwt)
return hwt->name;
return "unkown";
}
int get_num_flashblocks(uint8_t hw_type)
{
const hw_t *hwt = get_hw(hw_type);
if (hwt)
return hwt->num_flashblocks;
return 0;
}
int check_flash_id_type(uint8_t hw_type, uint8_t flash_id_type)
{
const hw_t *hwt = get_hw(hw_type);
if (hwt)
return (hwt->flash_id_type != flash_id_type);
else
return 1; /* no hardware type found => always fail */
}