Skip to content

Commit 51fa842

Browse files
committed
Release v3.3.0 (20210126)
1 parent 8c29897 commit 51fa842

File tree

115 files changed

+5900
-4008
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+5900
-4008
lines changed

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 2.6.4)
22
project (cryptoauthlib C)
33

44
# Set the current release version
5-
set(VERSION "3.2.5")
5+
set(VERSION "3.3.0")
66
set(VERSION_MAJOR 3)
7-
set(VERSION_MINOR 2)
8-
set(VERSION_PATCH 5)
7+
set(VERSION_MINOR 3)
8+
set(VERSION_PATCH 0)
99

1010
# Build Options
1111
option(BUILD_TESTS "Create Test Application with library" OFF)

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ configuration is well tested, then you can commit it to a CryptoAuth Xplained
3636
Pro Extension, for example. Keep in mind that once you lock a device, it will
3737
not be changeable.
3838

39+
Licensing
40+
---------------------------
41+
42+
The CryptoAuthLib license can be found in the accompaning [license.txt](https://github.com/MicrochipTech/cryptoauthlib/blob/main/license.txt)
43+
file.
44+
45+
Cryptoauthlib also includes optional third party software subject to their own licensing terms. If you are using one of these optional components please
46+
verify the terms of those licenses as well in the third_party/<module> directories.
47+
3948

4049
Examples
4150
-----------

app/api_206a/api_206a.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ extern "C" {
3333
#endif
3434

3535
#include "atca_status.h"
36-
#include "atca_command.h"
3736

3837
#define ATCA_SHA206A_ZONE_WRITE_LOCK 0x20
3938
#define ATCA_SHA206A_DKEY_CONSUMPTION_MASK 0x01
@@ -68,4 +67,4 @@ ATCA_STATUS sha206a_get_data_store_lock_status(uint8_t slot, uint8_t* is_locked)
6867
}
6968
#endif
7069

71-
#endif
70+
#endif

cryptoauthlib-manual.pdf

178 KB
Binary file not shown.

harmony/config/cryptoauthlib.py

+85-4
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,22 @@ def updateHalTracker(id, inc):
6161
calHalTracker[id] = cnt
6262
elif cnt > 0:
6363
cnt -= 1
64-
65-
symbol = Database.getComponentByID('cryptoauthlib').getSymbolByID('CAL_FILE_SRC_HAL_' + id.upper())
64+
65+
print('updateHalTracker', id)
66+
67+
symbol = Database.getComponentByID('cryptoauthlib').getSymbolByID('CAL_FILE_SRC_HAL_' + id)
6668
symbol.setEnabled(cnt > 0)
6769

70+
calHalList = Database.getComponentByID('cryptoauthlib').getSymbolByID('CAL_HAL_LIST_ENTRIES')
71+
72+
if cnt == 0:
73+
del_value_from_list(calHalList, id)
74+
else:
75+
add_value_to_list(calHalList, id)
76+
6877

6978
def updatePlibTracker(id, inc):
79+
# id is of the form: <plib>_<hal>_<mode>
7080
global calPlibTracker
7181
cnt = calPlibTracker.pop(id, 0)
7282
if inc:
@@ -75,7 +85,12 @@ def updatePlibTracker(id, inc):
7585
elif cnt > 0:
7686
cnt -= 1
7787

78-
updateHalTracker(id.split('_')[1], inc)
88+
hal_ids = id.upper().split('_')[1:]
89+
if len(hal_ids) > 1:
90+
updateHalTracker('_'.join(hal_ids), inc)
91+
updateHalTracker(hal_ids[1], inc)
92+
else:
93+
updateHalTracker(hal_ids[0], inc)
7994

8095
calPlibList = Database.getComponentByID('cryptoauthlib').getSymbolByID('CAL_PLIB_LIST_ENTRIES')
8196

@@ -134,6 +149,15 @@ def updateFileEnable(component, pattern, enable):
134149
srcFile.setEnabled(enable)
135150

136151

152+
def check_if_file_exists(component, pattern):
153+
global numFileCntr
154+
for x in range(numFileCntr):
155+
srcFile = component.getSymbolByID(fileSymbolName + str(x))
156+
if srcFile is not None:
157+
if pattern.replace('/*','') in srcFile.getOutputName():
158+
return True
159+
return False
160+
137161

138162
def onAttachmentConnected(source, target):
139163
global _ca_dev_cnt
@@ -150,6 +174,9 @@ def onAttachmentConnected(source, target):
150174
if 'TA100' in targetComponentID:
151175
_ta_dev_cnt += 1
152176
updateFileEnable(srcComponent, _TA_PATHS, True)
177+
if check_if_file_exists(srcComponent, 'talib_fce'):
178+
calTaEnableFce = srcComponent.getSymbolByID('CAL_ENABLE_TA100_FCE')
179+
calTaEnableFce.setValue(True)
153180
else:
154181
_ca_dev_cnt += 1
155182
updateFileEnable(srcComponent, _CA_PATHS, True)
@@ -167,7 +194,9 @@ def onAttachmentConnected(source, target):
167194

168195
WolfCrypto = srcComponent.getSymbolByID('CAL_FILE_SRC_WOLFSSL_WRAPPER')
169196
WolfCrypto.setEnabled(True)
170-
print('connected lib_wolfcrypt')
197+
198+
calTaEnableAesAuth = srcComponent.getSymbolByID('CAL_ENABLE_TA100_AES_AUTH')
199+
calTaEnableAesAuth.setValue(True)
171200

172201

173202
def onAttachmentDisconnected(source, target):
@@ -185,6 +214,10 @@ def onAttachmentDisconnected(source, target):
185214
_ta_dev_cnt -= 1
186215
if 0 == _ta_dev_cnt:
187216
updateFileEnable(srcComponent, _TA_PATHS, False)
217+
calTaEnableFce = srcComponent.getSymbolByID('CAL_ENABLE_TA100_FCE')
218+
calTaEnableFce.setValue(False)
219+
calTaEnableAesAuth = srcComponent.getSymbolByID('CAL_ENABLE_TA100_AES_AUTH')
220+
calTaEnableAesAuth.setValue(False)
188221
else:
189222
_ca_dev_cnt -= 1
190223
if 0 == _ca_dev_cnt:
@@ -204,6 +237,9 @@ def onAttachmentDisconnected(source, target):
204237

205238
WolfCrypto = srcComponent.getSymbolByID('CAL_FILE_SRC_WOLFSSL_WRAPPER')
206239
WolfCrypto.setEnabled(False)
240+
241+
calTaEnableAesAuth = srcComponent.getSymbolByID('CAL_ENABLE_TA100_AES_AUTH')
242+
calTaEnableAesAuth.setValue(False)
207243

208244
print('disconnected lib_wolfcrypt')
209245

@@ -307,6 +343,38 @@ def instantiateComponent(calComponent):
307343
calLibI2cHalSrcFile.setProjectPath("config/" + configName + "/library/cryptoauthlib/hal/")
308344
calLibI2cHalSrcFile.setType('SOURCE')
309345
calLibI2cHalSrcFile.setEnabled(False)
346+
347+
calLibUartHalSrcFile = calComponent.createFileSymbol("CAL_FILE_SRC_HAL_UART", None)
348+
calLibUartHalSrcFile.setSourcePath("lib/hal/hal_uart_harmony.c")
349+
calLibUartHalSrcFile.setOutputName("hal_uart_harmony.c")
350+
calLibUartHalSrcFile.setDestPath("library/cryptoauthlib/hal")
351+
calLibUartHalSrcFile.setProjectPath("config/" + configName + "/library/cryptoauthlib/hal/")
352+
calLibUartHalSrcFile.setType('SOURCE')
353+
calLibUartHalSrcFile.setEnabled(False)
354+
355+
calLibSwiUartHalSrcFile = calComponent.createFileSymbol("CAL_FILE_SRC_HAL_SWI_UART", None)
356+
calLibSwiUartHalSrcFile.setSourcePath("lib/hal/hal_swi_uart.c")
357+
calLibSwiUartHalSrcFile.setOutputName("hal_swi_uart.c")
358+
calLibSwiUartHalSrcFile.setDestPath("library/cryptoauthlib/hal")
359+
calLibSwiUartHalSrcFile.setProjectPath("config/" + configName + "/library/cryptoauthlib/hal/")
360+
calLibSwiUartHalSrcFile.setType('SOURCE')
361+
calLibSwiUartHalSrcFile.setEnabled(False)
362+
363+
calLibSwiBBHalSrcFile = calComponent.createFileSymbol("CAL_FILE_SRC_HAL_BB", None)
364+
calLibSwiBBHalSrcFile.setSourcePath("lib/hal/hal_gpio_harmony.c")
365+
calLibSwiBBHalSrcFile.setOutputName("hal_gpio_harmony.c")
366+
calLibSwiBBHalSrcFile.setDestPath("library/cryptoauthlib/hal")
367+
calLibSwiBBHalSrcFile.setProjectPath("config/" + configName + "/library/cryptoauthlib/hal/")
368+
calLibSwiBBHalSrcFile.setType('SOURCE')
369+
calLibSwiBBHalSrcFile.setEnabled(False)
370+
371+
calLibSwiBBHalSrcFile = calComponent.createFileSymbol("CAL_FILE_SRC_HAL_SWI_BB", None)
372+
calLibSwiBBHalSrcFile.setSourcePath("lib/hal/hal_swi_bitbang_harmony.c")
373+
calLibSwiBBHalSrcFile.setOutputName("hal_swi_bitbang_harmony.c")
374+
calLibSwiBBHalSrcFile.setDestPath("library/cryptoauthlib/hal")
375+
calLibSwiBBHalSrcFile.setProjectPath("config/" + configName + "/library/cryptoauthlib/hal/")
376+
calLibSwiBBHalSrcFile.setType('SOURCE')
377+
calLibSwiBBHalSrcFile.setEnabled(False)
310378

311379
calLibSpiHalSrcFile = calComponent.createFileSymbol("CAL_FILE_SRC_HAL_SPI", None)
312380
calLibSpiHalSrcFile.setSourcePath("lib/hal/hal_spi_harmony.c")
@@ -317,6 +385,10 @@ def instantiateComponent(calComponent):
317385
calLibSpiHalSrcFile.setEnabled(False)
318386

319387
# List of HALs that will be included based on device connections
388+
calHalList = calComponent.createListSymbol('CAL_HAL_LIST', None)
389+
calHalList = calComponent.createListEntrySymbol('CAL_HAL_LIST_ENTRIES', None)
390+
calHalList.setTarget('cryptoauthlib.CAL_HAL_LIST')
391+
320392
calPlibList = calComponent.createListSymbol('CAL_PLIB_LIST', None)
321393
calPlibList = calComponent.createListEntrySymbol('CAL_PLIB_LIST_ENTRIES', None)
322394
calPlibList.setTarget('cryptoauthlib.CAL_PLIB_LIST')
@@ -325,6 +397,15 @@ def instantiateComponent(calComponent):
325397
calDeviceList = calComponent.createListSymbol('CAL_DEVICE_LIST', None)
326398
calDeviceList = calComponent.createListEntrySymbol('CAL_DEVICE_LIST_ENTRIES', None)
327399
calDeviceList.setTarget('cryptoauthlib.CAL_DEVICE_LIST')
400+
401+
# Add device specific options
402+
calTaEnableAesAuth = calComponent.createBooleanSymbol('CAL_ENABLE_TA100_AES_AUTH', None)
403+
calTaEnableAesAuth.setValue(False)
404+
calTaEnableAesAuth.setVisible(True)
405+
406+
calTaEnableFce = calComponent.createBooleanSymbol('CAL_ENABLE_TA100_FCE', None)
407+
calTaEnableFce.setValue(False)
408+
calTaEnableFce.setVisible(True)
328409

329410

330411
################# Templated files to be included #######################

harmony/config/device_instance.py

+90-26
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
*****************************************************************************"""
2424

2525
_DEFAULT_I2C_ADDRESS = {'ecc': 0xC0, 'sha': 0xC8, 'ta100': 0x2e}
26-
_SWI_DEVICES = ['ATSHA204A', 'ATSHA206A', 'ATECC108A', 'ATECC508A', 'ATECC608']
27-
_I2C_DEVICES = ['ATSHA204A', 'ATECC108A', 'ATECC508A', 'ATECC608', 'TA100']
26+
_SWI_DEVICES = ['ATSHA204A', 'ATSHA206A', 'ATECC108A', 'ATECC508A', 'ATECC608', 'ECC204']
27+
_I2C_DEVICES = ['ATSHA204A', 'ATECC108A', 'ATECC508A', 'ATECC608', 'TA100', 'ECC204']
2828
_SPI_DEVICES = ['TA100']
2929

3030

@@ -36,29 +36,56 @@ def updateTngCapability(id, src):
3636
Database.sendMessage('cryptoauthlib_tng', 'UPDATE_TNG_TYPE', {'id': id, 'src': src})
3737

3838

39+
def updateSwiBbInterfaceSettings(symbol, swi_bb_iface):
40+
if swi_bb_iface:
41+
symbol.getComponent().getSymbolByID('HAL_INTERFACE').setValue("GPIO")
42+
updateSercomPlibList("GPIO_SWI_BB", swi_bb_iface)
43+
else:
44+
if symbol.getComponent().getSymbolByID('INTERFACE').getReadOnly():
45+
pass
46+
else:
47+
try:
48+
symbol.getComponent().getSymbolByID('HAL_INTERFACE').clearValue()
49+
except AttributeError:
50+
pass
51+
updateSercomPlibList("GPIO_SWI_BB", swi_bb_iface)
52+
53+
3954
def updatePartInterfaceSettings(symbol, event):
4055
symObj = event['symbol']
4156
updateId = event['id'].upper()
4257
selected_key = symObj.getSelectedKey()
58+
SWI_BB_IFACE = False
4359

4460
if updateId == 'INTERFACE':
4561
if selected_key == 'ATCA_SPI_IFACE':
4662
symbol.setVisible('SPI' in symbol.getID())
63+
symbol.getComponent().getSymbolByID('I2C_ADDR').setVisible(False)
4764
elif selected_key == 'ATCA_I2C_IFACE':
4865
symbol.setVisible('I2C' in symbol.getID())
66+
elif selected_key == 'ATCA_SWI_IFACE':
67+
symbol.setVisible('SWI_UART' in symbol.getID())
68+
symbol.getComponent().getSymbolByID('I2C_ADDR').setVisible(False)
69+
elif selected_key == 'ATCA_SWI_BB_IFACE':
70+
SWI_BB_IFACE = True
71+
symbol.setVisible('SWIBB' in symbol.getID())
72+
symbol.getComponent().getSymbolByID('I2C_ADDR').setVisible(False)
73+
74+
updateSwiBbInterfaceSettings(symbol, SWI_BB_IFACE)
4975
elif updateId == 'PART_TYPE':
5076
if selected_key == "TNGTLS":
5177
Database.activateComponents(['cryptoauthlib_tng'])
52-
symbol.setValue(0x6A)
78+
i2c_addr = 0x6A
5379
elif selected_key == "TFLEX":
5480
Database.activateComponents(['cryptoauthlib_tng'])
55-
symbol.setValue(0x6C)
81+
i2c_addr = 0x6C
5682
elif selected_key == "TNGLORA":
5783
Database.activateComponents(['cryptoauthlib_tng'])
58-
symbol.setValue(0xB2)
84+
i2c_addr = 0xB2
5985
else:
60-
symbol.setValue(0xC0)
86+
i2c_addr = 0xC0
6187

88+
symbol.getComponent().getSymbolByID('I2C_ADDR').setValue(i2c_addr)
6289
updateTngCapability(selected_key, event['namespace'])
6390

6491

@@ -84,10 +111,11 @@ def instantiateComponent(deviceComponent, index):
84111
interfaceType.setLabel('Interface Type')
85112
if deviceType in _I2C_DEVICES:
86113
interfaceType.addKey("ATCA_I2C_IFACE", "0", "I2C")
87-
# if deviceType in _SWI_DEVICES:
88-
# interfaceType.addKey("ATCA_SWI_IFACE", "1", "SWI")
114+
if deviceType in _SWI_DEVICES:
115+
interfaceType.addKey("ATCA_SWI_IFACE", "1", "SWI")
116+
interfaceType.addKey("ATCA_SWI_BB_IFACE", "2", "SWI_BB")
89117
if deviceType in _SPI_DEVICES:
90-
interfaceType.addKey("ATCA_SPI_IFACE", "2", "SPI")
118+
interfaceType.addKey("ATCA_SPI_IFACE", "3", "SPI")
91119
interfaceType.setDefaultValue(0)
92120
interfaceType.setOutputMode("Key")
93121
interfaceType.setDisplayMode("Description")
@@ -102,22 +130,25 @@ def instantiateComponent(deviceComponent, index):
102130
devicePartType.setDefaultValue(0)
103131
devicePartType.setOutputMode("Key")
104132
devicePartType.setDisplayMode("Description")
105-
106-
deviceAddress = deviceComponent.createHexSymbol("I2C_ADDR", devicePartType)
107-
deviceAddress.setLabel("I2C Address")
108-
deviceAddress.setDefaultValue(0xC0)
109-
else:
110-
deviceAddress = deviceComponent.createHexSymbol("I2C_ADDR", interfaceType)
111-
deviceAddress.setLabel("I2C Address")
112-
113-
if 'ECC' in deviceID:
114-
deviceAddress.setDefaultValue(_DEFAULT_I2C_ADDRESS['ecc'])
115-
elif 'SHA' in deviceID:
116-
deviceAddress.setDefaultValue(_DEFAULT_I2C_ADDRESS['sha'])
117-
elif 'TA' in deviceID:
118-
deviceAddress.setDefaultValue(_DEFAULT_I2C_ADDRESS['ta100'])
119-
120-
deviceAddress.setDependencies(updatePartInterfaceSettings, ["PART_TYPE"])
133+
devicePartType.setDependencies(updatePartInterfaceSettings, ["PART_TYPE"])
134+
135+
deviceAddress = deviceComponent.createHexSymbol("I2C_ADDR", interfaceType)
136+
deviceAddress.setLabel("I2C Address")
137+
138+
if 'ECC' in deviceID:
139+
deviceAddress.setDefaultValue(_DEFAULT_I2C_ADDRESS['ecc'])
140+
elif 'SHA' in deviceID:
141+
deviceAddress.setDefaultValue(_DEFAULT_I2C_ADDRESS['sha'])
142+
elif 'TA' in deviceID:
143+
deviceAddress.setDefaultValue(_DEFAULT_I2C_ADDRESS['ta100'])
144+
145+
deviceAddress.setDependencies(updatePartInterfaceSettings, ["INTERFACE"])
146+
deviceAddress.setVisible(True)
147+
148+
swiUartComment = deviceComponent.createCommentSymbol("SWI_UART_COMMENT", interfaceType)
149+
swiUartComment.setLabel("!!! Select UART Ring buffer mode in UART configuration.!!! ")
150+
swiUartComment.setDependencies(updatePartInterfaceSettings, ["INTERFACE"])
151+
swiUartComment.setVisible(False)
121152

122153
spiCsComment = deviceComponent.createCommentSymbol("SPI_CS_PINS_COMMENT", interfaceType)
123154
spiCsComment.setLabel("!!! Configure the Chip Select pin as GPIO OUTPUT in Pin Settings.!!! ")
@@ -132,6 +163,20 @@ def instantiateComponent(deviceComponent, index):
132163
spiChipSelectPin.setDependencies(updatePartInterfaceSettings, ["INTERFACE"])
133164
spiChipSelectPin.setVisible(False)
134165

166+
swibbPinComment = deviceComponent.createCommentSymbol("SWIBB_PIN_COMMENT", interfaceType)
167+
swibbPinComment.setLabel("!!! Configure the SWI Crypto pin as GPIO INPUT.!!! ")
168+
swibbPinComment.setDependencies(updatePartInterfaceSettings, ["INTERFACE"])
169+
swibbPinComment.setVisible(False)
170+
171+
# Gpio pin configuration for swi bitbang
172+
swibbCryptoPin = deviceComponent.createKeyValueSetSymbol("SWIBB_CRYPTO_PIN", interfaceType)
173+
swibbCryptoPin.setLabel("SWIBB Crypto Pin")
174+
swibbCryptoPin.setDefaultValue(0)
175+
swibbCryptoPin.setOutputMode("Key")
176+
swibbCryptoPin.setDisplayMode("Description")
177+
swibbCryptoPin.setDependencies(updatePartInterfaceSettings, ["INTERFACE"])
178+
swibbCryptoPin.setVisible(False)
179+
135180
availablePinDictionary = {}
136181
availablePinDictionary = Database.sendMessage("core", "PIN_LIST", availablePinDictionary)
137182

@@ -140,6 +185,7 @@ def instantiateComponent(deviceComponent, index):
140185
value = list(availablePinDictionary.keys())[list(availablePinDictionary.values()).index(pad)]
141186
description = pad
142187
spiChipSelectPin.addKey(key, value, description)
188+
swibbCryptoPin.addKey(key, value, description)
143189

144190
wakeupDelay = deviceComponent.createIntegerSymbol("WAKEUP_DELAY", None)
145191
wakeupDelay.setLabel("Wakeup Delay (us)")
@@ -179,7 +225,14 @@ def onAttachmentConnected(source, target):
179225
elif 'SPI' in sourceID:
180226
source['component'].getSymbolByID('HAL_INTERFACE').setValue(targetID)
181227
source['component'].getSymbolByID('INTERFACE').setReadOnly(True)
182-
source['component'].getSymbolByID('INTERFACE').setSelectedKey('ATCA_SPI_IFACE', 1)
228+
source['component'].getSymbolByID('INTERFACE').setSelectedKey('ATCA_SPI_IFACE', 3)
229+
updateSercomPlibList(target['id'], True)
230+
elif 'SWI' in sourceID:
231+
source['component'].getSymbolByID('HAL_INTERFACE').setValue(targetID)
232+
source['component'].getSymbolByID('INTERFACE').setReadOnly(True)
233+
source['component'].getSymbolByID('INTERFACE').setSelectedKey('ATCA_SWI_IFACE', 1)
234+
if "uart" in target['id'].lower():
235+
target['id'] = target['id'].replace("UART", "SWI_UART")
183236
updateSercomPlibList(target['id'], True)
184237

185238

@@ -205,5 +258,16 @@ def onAttachmentDisconnected(source, target):
205258
# Happens when the instance is deleted while attached
206259
pass
207260
updateSercomPlibList(target['id'], False)
261+
elif 'SWI' in sourceID:
262+
try:
263+
source['component'].getSymbolByID('HAL_INTERFACE').clearValue()
264+
source['component'].getSymbolByID('INTERFACE').clearValue()
265+
source['component'].getSymbolByID('INTERFACE').setReadOnly(False)
266+
except AttributeError:
267+
# Happens when the instance is deleted while attached
268+
pass
269+
if "uart" in target['id'].lower():
270+
target['id'] = target['id'].replace("UART", "SWI_UART")
271+
updateSercomPlibList(target['id'], False)
208272

209273

0 commit comments

Comments
 (0)