Blame view

include/atsha204a-i2c.h 1.51 KB
d41ce506b   Eric Lee   Initial Release, ...
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
  /*
   * I2C Driver for Atmel ATSHA204 over I2C
   *
   * Copyright (C) 2014 Josh Datko, Cryptotronix, jbd@cryptotronix.com
   * 		 2016 Tomas Hlavacek, CZ.NIC, tmshlvck@gmail.com
   * 		 2017 Marek Behun, CZ.NIC, marek.behun@nic.cz
   *
   * This program is free software; you can redistribute  it and/or modify it
   * under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  #ifndef _ATSHA204_I2C_H_
  #define _ATSHA204_I2C_H_
  
  enum atsha204a_zone
  {
  	ATSHA204A_ZONE_CONFIG	= 0,
  	ATSHA204A_ZONE_OTP	= 1,
  	ATSHA204A_ZONE_DATA	= 2,
  };
  
  enum atsha204a_status
  {
  	ATSHA204A_STATUS_SUCCESS	= 0x00,
  	ATSHA204A_STATUS_MISCOMPARE	= 0x01,
  	ATSHA204A_STATUS_PARSE_ERROR	= 0x03,
  	ATSHA204A_STATUS_EXEC_ERROR	= 0x0F,
  	ATSHA204A_STATUS_AFTER_WAKE	= 0x11,
  	ATSHA204A_STATUS_CRC_ERROR	= 0xFF,
  };
  
  enum atsha204a_func
  {
  	ATSHA204A_FUNC_RESET	= 0x00,
  	ATSHA204A_FUNC_SLEEP	= 0x01,
  	ATSHA204A_FUNC_IDLE	= 0x02,
  	ATSHA204A_FUNC_COMMAND	= 0x03,
  };
  
  enum atsha204a_cmd
  {
  	ATSHA204A_CMD_READ	= 0x02,
  	ATSHA204A_CMD_RANDOM	= 0x1B,
  };
  
  struct atsha204a_resp
  {
  	u8 length;
  	u8 code;
  	u8 data[82];
  } __attribute__ ((packed));
  
  struct atsha204a_req
  {
  	u8 function;
  	u8 length;
  	u8 command;
  	u8 param1;
  	u16 param2;
  	u8 data[78];
  } __attribute__ ((packed));
  
  int atsha204a_wakeup(struct udevice *);
  int atsha204a_idle(struct udevice *);
  int atsha204a_sleep(struct udevice *);
  int atsha204a_read(struct udevice *, enum atsha204a_zone, bool, u16, u8 *);
  int atsha204a_get_random(struct udevice *, u8 *, size_t);
  
  #endif /* _ATSHA204_I2C_H_ */