-
Notifications
You must be signed in to change notification settings - Fork 4
/
pcanhw.h
82 lines (72 loc) · 2.38 KB
/
pcanhw.h
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
/*
* pcanhw.h - flash program for PCAN routers
*
* Copyright (C) 2021 PEAK System-Technik GmbH
*
* linux@peak-system.com
* 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 (socketcan@hartkopp.net)
* Maintainer(s): Stephane Grosjean (s.grosjean@peak-system.com)
*
*/
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
/* empty flash content -> all bits are set */
#define EMPTY 0xFFU
typedef struct {
uint32_t start;
uint32_t len;
bool skipped;
} fblock_t;
#define HW_NAME_MAX_LEN 24
#define UNKNOWN_FLASH_ID 0
#define MAX_MODULES 64
#define MAX_MODULES_MASK 0x3F /* '64 - 1' bit mask */
#define NO_MODULE_ID MAX_MODULES /* as we have module IDs 0 .. 63 */
#define NO_DATA_LEN 0
#define DATA_LEN6 6
#define DATA_LEN8 8
typedef struct {
const char name[HW_NAME_MAX_LEN];
const char ch_file[HW_NAME_MAX_LEN];
const uint32_t flags;
const uint32_t crc_startpos;
const uint32_t flash_offset;
const uint32_t file_skip;
const uint32_t max_blocksize;
const uint8_t flash_id_type;
const int num_flashblocks;
const fblock_t *flashblocks;
} hw_t;
/* hardware type specific flags */
#define FDATA_INVERT (1<<0)
#define SWITCH_TO_BOOTLOADER (1<<1)
#define RESET_AFTER_FLASH (1<<2)
#define END_PROGRAMMING (1<<3)
#define DATA_MODE8 (1<<4)
const hw_t *get_hw(uint8_t hw_type);
uint32_t get_crc_startpos(uint8_t hw_type);
uint32_t get_flash_offset(uint8_t hw_type);
uint32_t get_file_skip(uint8_t hw_type);
uint32_t get_max_blocksize(uint8_t hw_type);
uint32_t has_hw_flags(uint8_t hw_type, const uint32_t flags);
const char *get_hw_name(uint8_t hw_type);
const char *get_flash_name(uint8_t flash_type);
int get_num_flashblocks(uint8_t hw_type);
int check_flash_id_type(uint8_t hw_type, uint8_t flash_id_type);