2018-01-05 02:19:51 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import sys, fnmatch
|
|
|
|
import importlib
|
|
|
|
|
|
|
|
# peripheral types that can be shared, wildcard patterns
|
2018-03-13 21:28:14 -03:00
|
|
|
SHARED_MAP = ["I2C*", "USART*_TX", "UART*_TX", "SPI*", "TIM*_UP"]
|
2018-01-05 02:19:51 -04:00
|
|
|
|
|
|
|
ignore_list = []
|
|
|
|
dma_map = None
|
|
|
|
|
|
|
|
debug = False
|
|
|
|
|
2019-02-14 06:18:13 -04:00
|
|
|
def check_possibility(periph, dma_stream, curr_dict, dma_map, check_list, recurse=False):
|
|
|
|
global ignore_list
|
2018-01-30 01:24:13 -04:00
|
|
|
for other_periph in curr_dict:
|
|
|
|
if other_periph != periph:
|
|
|
|
if curr_dict[other_periph] == dma_stream:
|
|
|
|
ignore_list.append(periph)
|
|
|
|
check_str = "%s(%d,%d) %s(%d,%d)" % (
|
|
|
|
other_periph, curr_dict[other_periph][0],
|
|
|
|
curr_dict[other_periph][1], periph, dma_stream[0],
|
|
|
|
dma_stream[1])
|
|
|
|
#check if we did this before
|
|
|
|
if check_str in check_list:
|
|
|
|
return False
|
|
|
|
check_list.append(check_str)
|
|
|
|
if debug:
|
|
|
|
print("Trying to Resolve Conflict: ", check_str)
|
|
|
|
#check if we can resolve by swapping with other periphs
|
2018-03-13 21:28:14 -03:00
|
|
|
for streamchan in dma_map[other_periph]:
|
|
|
|
stream = (streamchan[0], streamchan[1])
|
2019-02-14 06:18:13 -04:00
|
|
|
if stream != curr_dict[other_periph] and check_possibility(other_periph, stream, curr_dict, dma_map, check_list, False):
|
|
|
|
if not recurse:
|
|
|
|
curr_dict[other_periph] = stream
|
2018-01-30 01:24:13 -04:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2018-02-08 07:13:00 -04:00
|
|
|
def can_share(periph, noshare_list):
|
2018-01-30 01:24:13 -04:00
|
|
|
'''check if a peripheral is in the SHARED_MAP list'''
|
2018-02-08 07:13:00 -04:00
|
|
|
for noshare in noshare_list:
|
|
|
|
if fnmatch.fnmatch(periph, noshare):
|
|
|
|
return False
|
2018-01-30 01:24:13 -04:00
|
|
|
for f in SHARED_MAP:
|
|
|
|
if fnmatch.fnmatch(periph, f):
|
|
|
|
return True
|
|
|
|
if debug:
|
|
|
|
print("%s can't share" % periph)
|
|
|
|
return False
|
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2019-02-19 22:55:18 -04:00
|
|
|
# list of peripherals on H7 that are on DMAMUX2 and BDMA
|
|
|
|
have_DMAMUX = False
|
|
|
|
DMAMUX2_peripherals = [ 'I2C4', 'SPI6', 'ADC3' ]
|
|
|
|
|
|
|
|
def dmamux_channel(key):
|
|
|
|
'''return DMAMUX channel for H7'''
|
|
|
|
for p in DMAMUX2_peripherals:
|
|
|
|
if key.find(p) != -1:
|
|
|
|
return 'STM32_DMAMUX2_' + key
|
|
|
|
# default to DMAMUX1
|
|
|
|
return 'STM32_DMAMUX1_' + key
|
|
|
|
|
|
|
|
def dma_name(key):
|
|
|
|
'''return 'DMA' or 'BDMA' based on peripheral name'''
|
|
|
|
if not have_DMAMUX:
|
|
|
|
return "DMA"
|
|
|
|
for p in DMAMUX2_peripherals:
|
|
|
|
if key.find(p) != -1:
|
|
|
|
return 'BDMA'
|
|
|
|
return 'DMA'
|
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
def chibios_dma_define_name(key):
|
2018-01-30 01:24:13 -04:00
|
|
|
'''return define name needed for board.h for ChibiOS'''
|
2019-02-19 22:55:18 -04:00
|
|
|
dma_key = key + '_' + dma_name(key)
|
2018-01-30 01:24:13 -04:00
|
|
|
if key.startswith('ADC'):
|
2019-02-19 22:55:18 -04:00
|
|
|
return 'STM32_ADC_%s_' % dma_key
|
2018-01-30 01:24:13 -04:00
|
|
|
elif key.startswith('SPI'):
|
2019-02-19 22:55:18 -04:00
|
|
|
return 'STM32_SPI_%s_' % dma_key
|
2018-01-30 01:24:13 -04:00
|
|
|
elif key.startswith('I2C'):
|
2019-02-19 22:55:18 -04:00
|
|
|
return 'STM32_I2C_%s_' % dma_key
|
2018-01-30 01:24:13 -04:00
|
|
|
elif key.startswith('USART'):
|
2019-02-19 22:55:18 -04:00
|
|
|
return 'STM32_UART_%s_' % dma_key
|
2018-01-30 01:24:13 -04:00
|
|
|
elif key.startswith('UART'):
|
2019-02-19 22:55:18 -04:00
|
|
|
return 'STM32_UART_%s_' % dma_key
|
2018-03-02 22:57:33 -04:00
|
|
|
elif key.startswith('SDIO') or key.startswith('SDMMC'):
|
2019-02-19 22:55:18 -04:00
|
|
|
return 'STM32_SDC_%s_' % dma_key
|
2018-01-30 01:24:13 -04:00
|
|
|
elif key.startswith('TIM'):
|
2019-02-19 22:55:18 -04:00
|
|
|
return 'STM32_TIM_%s_' % dma_key
|
2018-01-30 01:24:13 -04:00
|
|
|
else:
|
|
|
|
print("Error: Unknown key type %s" % key)
|
|
|
|
sys.exit(1)
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-02-08 07:13:00 -04:00
|
|
|
def get_list_index(peripheral, priority_list):
|
|
|
|
'''return index into priority_list for a peripheral'''
|
|
|
|
for i in range(len(priority_list)):
|
|
|
|
str = priority_list[i]
|
|
|
|
if fnmatch.fnmatch(peripheral, str):
|
|
|
|
return i
|
|
|
|
# default to max priority
|
|
|
|
return len(priority_list)
|
|
|
|
|
|
|
|
def get_sharing_priority(periph_list, priority_list):
|
|
|
|
'''get priority of a list of peripherals we could share with'''
|
|
|
|
highest = len(priority_list)
|
|
|
|
for p in periph_list:
|
|
|
|
prio = get_list_index(p, priority_list)
|
|
|
|
if prio < highest:
|
|
|
|
highest = prio
|
|
|
|
return highest
|
|
|
|
|
2019-02-19 22:55:18 -04:00
|
|
|
def generate_DMAMUX_map_mask(peripheral_list, channel_mask, noshare_list, dma_exclude):
|
2019-02-14 06:18:13 -04:00
|
|
|
'''
|
|
|
|
generate a dma map suitable for a board with a DMAMUX
|
|
|
|
|
|
|
|
In principle any peripheral can use any stream, but we need to
|
|
|
|
ensure that a peripheral doesn't try to use the same stream as its
|
|
|
|
partner (eg. a RX/TX pair)
|
|
|
|
'''
|
|
|
|
dma_map = {}
|
|
|
|
idsets = {}
|
|
|
|
|
|
|
|
# first unshareable peripherals
|
2019-02-19 22:55:18 -04:00
|
|
|
available = channel_mask
|
2019-02-14 06:18:13 -04:00
|
|
|
for p in peripheral_list:
|
|
|
|
dma_map[p] = []
|
|
|
|
idsets[p] = set()
|
|
|
|
|
|
|
|
for p in peripheral_list:
|
2019-02-18 18:50:04 -04:00
|
|
|
if can_share(p, noshare_list) or p in dma_exclude:
|
2019-02-14 06:18:13 -04:00
|
|
|
continue
|
|
|
|
for i in range(16):
|
|
|
|
mask = (1<<i)
|
|
|
|
if available & mask != 0:
|
2019-02-18 18:50:04 -04:00
|
|
|
available &= ~mask
|
2019-02-14 06:18:13 -04:00
|
|
|
dma = (i // 8) + 1
|
|
|
|
stream = i % 8
|
|
|
|
dma_map[p].append((dma,stream,0))
|
|
|
|
idsets[p].add(i)
|
|
|
|
break
|
|
|
|
|
2019-02-18 18:50:04 -04:00
|
|
|
if debug:
|
|
|
|
print('dma_map1: ', dma_map)
|
2019-03-02 05:21:36 -04:00
|
|
|
print('available: 0x%04x' % available)
|
2019-02-18 18:50:04 -04:00
|
|
|
|
2019-02-14 06:18:13 -04:00
|
|
|
# now shareable
|
|
|
|
idx = 0
|
|
|
|
for p in peripheral_list:
|
2019-02-18 18:50:04 -04:00
|
|
|
if not can_share(p, noshare_list) or p in dma_exclude:
|
2019-02-14 06:18:13 -04:00
|
|
|
continue
|
|
|
|
base = idx % 16
|
|
|
|
for i in range(16):
|
|
|
|
found = None
|
2019-04-19 22:22:06 -03:00
|
|
|
for ii in list(range(base,16)) + list(range(0,base)):
|
2019-02-14 06:18:13 -04:00
|
|
|
if (1<<ii) & available == 0:
|
|
|
|
continue
|
|
|
|
|
|
|
|
dma = (ii // 8) + 1
|
|
|
|
stream = ii % 8
|
|
|
|
|
|
|
|
if (dma,stream) in dma_map[p]:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# prevent attempts to share with other half of same peripheral
|
|
|
|
if p.endswith('RX'):
|
|
|
|
other = p[:-2] + 'TX'
|
|
|
|
elif p.endswith('TX'):
|
|
|
|
other = p[:-2] + 'RX'
|
|
|
|
else:
|
|
|
|
other = None
|
|
|
|
|
|
|
|
if other is not None and ii in idsets[other]:
|
2019-02-18 18:50:04 -04:00
|
|
|
if len(idsets[p]) >= len(idsets[other]) and len(idsets[other]) > 0:
|
2019-02-14 06:18:13 -04:00
|
|
|
continue
|
|
|
|
idsets[other].remove(ii)
|
|
|
|
dma_map[other].remove((dma,stream))
|
|
|
|
found = ii
|
|
|
|
break
|
|
|
|
if found is None:
|
|
|
|
continue
|
|
|
|
base = (found+1) % 16
|
|
|
|
dma = (found // 8) + 1
|
|
|
|
stream = found % 8
|
|
|
|
dma_map[p].append((dma,stream))
|
|
|
|
idsets[p].add(found)
|
|
|
|
idx = (idx+1) % 16
|
|
|
|
if debug:
|
|
|
|
print('dma_map: ', dma_map)
|
|
|
|
print('idsets: ', idsets)
|
2019-03-02 05:21:36 -04:00
|
|
|
print('available: 0x%04x' % available)
|
2019-02-14 06:18:13 -04:00
|
|
|
return dma_map
|
|
|
|
|
2019-02-19 22:55:18 -04:00
|
|
|
def generate_DMAMUX_map(peripheral_list, noshare_list, dma_exclude):
|
|
|
|
'''
|
|
|
|
generate a dma map suitable for a board with a DMAMUX1 and DMAMUX2
|
|
|
|
'''
|
|
|
|
# first split peripheral_list into those for DMAMUX1 and those for DMAMUX2
|
|
|
|
dmamux1_peripherals = []
|
|
|
|
dmamux2_peripherals = []
|
|
|
|
for p in peripheral_list:
|
|
|
|
if dma_name(p) == 'BDMA':
|
|
|
|
dmamux2_peripherals.append(p)
|
|
|
|
else:
|
|
|
|
dmamux1_peripherals.append(p)
|
|
|
|
map1 = generate_DMAMUX_map_mask(dmamux1_peripherals, 0xFFFF, noshare_list, dma_exclude)
|
2020-04-27 02:17:09 -03:00
|
|
|
# there are 8 BDMA channels, but an issue has been found where if I2C4 and SPI6
|
|
|
|
# use neighboring channels then we sometimes lose a BDMA completion interrupt. To
|
|
|
|
# avoid this we set the BDMA available mask to 0x33, which forces the channels not to be
|
|
|
|
# adjacent. This issue was found on a CUAV-X7, with H743 RevV.
|
|
|
|
map2 = generate_DMAMUX_map_mask(dmamux2_peripherals, 0x33, noshare_list, dma_exclude)
|
2019-03-02 05:21:36 -04:00
|
|
|
# translate entries from map2 to "DMA controller 3", which is used for BDMA
|
|
|
|
for p in map2.keys():
|
|
|
|
streams = []
|
|
|
|
for (controller,stream) in map2[p]:
|
|
|
|
streams.append((3,stream))
|
|
|
|
map2[p] = streams
|
2019-02-19 22:55:18 -04:00
|
|
|
both = map1
|
|
|
|
both.update(map2)
|
|
|
|
if debug:
|
|
|
|
print('dma_map_both: ', both)
|
|
|
|
return both
|
|
|
|
|
2018-02-08 07:13:00 -04:00
|
|
|
def write_dma_header(f, peripheral_list, mcu_type, dma_exclude=[],
|
|
|
|
dma_priority='', dma_noshare=''):
|
2018-01-30 01:24:13 -04:00
|
|
|
'''write out a DMA resolver header file'''
|
2019-02-19 22:55:18 -04:00
|
|
|
global dma_map, have_DMAMUX
|
2018-02-08 07:13:00 -04:00
|
|
|
|
|
|
|
# form a list of DMA priorities
|
|
|
|
priority_list = dma_priority.split()
|
|
|
|
|
|
|
|
# sort by priority
|
|
|
|
peripheral_list = sorted(peripheral_list, key=lambda x: get_list_index(x, priority_list))
|
|
|
|
|
|
|
|
# form a list of peripherals that can't share
|
|
|
|
noshare_list = dma_noshare.split()
|
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
try:
|
|
|
|
lib = importlib.import_module(mcu_type)
|
2018-08-29 10:18:55 -03:00
|
|
|
if hasattr(lib, "DMA_Map"):
|
|
|
|
dma_map = lib.DMA_Map
|
|
|
|
else:
|
2019-12-29 03:56:28 -04:00
|
|
|
return []
|
2018-01-30 01:24:13 -04:00
|
|
|
except ImportError:
|
|
|
|
print("Unable to find module for MCU %s" % mcu_type)
|
|
|
|
sys.exit(1)
|
|
|
|
|
2019-02-14 06:18:13 -04:00
|
|
|
if dma_map is None:
|
|
|
|
have_DMAMUX = True
|
2019-02-18 18:50:04 -04:00
|
|
|
dma_map = generate_DMAMUX_map(peripheral_list, noshare_list, dma_exclude)
|
2019-02-14 06:18:13 -04:00
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
print("Writing DMA map")
|
|
|
|
unassigned = []
|
|
|
|
curr_dict = {}
|
|
|
|
|
|
|
|
for periph in peripheral_list:
|
2018-02-06 03:20:09 -04:00
|
|
|
if periph in dma_exclude:
|
|
|
|
continue
|
2018-01-30 01:24:13 -04:00
|
|
|
assigned = False
|
|
|
|
check_list = []
|
|
|
|
if not periph in dma_map:
|
|
|
|
print("Unknown peripheral function %s in DMA map for %s" %
|
|
|
|
(periph, mcu_type))
|
|
|
|
sys.exit(1)
|
2018-03-13 21:28:14 -03:00
|
|
|
for streamchan in dma_map[periph]:
|
|
|
|
stream = (streamchan[0], streamchan[1])
|
2018-01-30 01:24:13 -04:00
|
|
|
if check_possibility(periph, stream, curr_dict, dma_map,
|
|
|
|
check_list):
|
|
|
|
curr_dict[periph] = stream
|
|
|
|
assigned = True
|
|
|
|
break
|
|
|
|
if assigned == False:
|
|
|
|
unassigned.append(periph)
|
|
|
|
|
2019-02-14 06:18:13 -04:00
|
|
|
if debug:
|
|
|
|
print('curr_dict: ', curr_dict)
|
|
|
|
print('unassigned: ', unassigned)
|
|
|
|
|
2018-02-08 07:13:00 -04:00
|
|
|
# now look for shared DMA possibilities
|
2018-01-30 01:24:13 -04:00
|
|
|
stream_assign = {}
|
|
|
|
for k in curr_dict.keys():
|
2019-02-14 06:18:13 -04:00
|
|
|
p = curr_dict[k]
|
|
|
|
if not p in stream_assign:
|
|
|
|
stream_assign[p] = [k]
|
|
|
|
else:
|
|
|
|
stream_assign[p].append(k)
|
2018-01-30 01:24:13 -04:00
|
|
|
|
|
|
|
unassigned_new = unassigned[:]
|
|
|
|
for periph in unassigned:
|
2018-02-08 07:13:00 -04:00
|
|
|
share_possibility = []
|
2018-03-13 21:28:14 -03:00
|
|
|
for streamchan in dma_map[periph]:
|
|
|
|
stream = (streamchan[0], streamchan[1])
|
2018-01-30 01:24:13 -04:00
|
|
|
share_ok = True
|
|
|
|
for periph2 in stream_assign[stream]:
|
2018-02-08 07:13:00 -04:00
|
|
|
if not can_share(periph, noshare_list) or not can_share(periph2, noshare_list):
|
2018-01-30 01:24:13 -04:00
|
|
|
share_ok = False
|
|
|
|
if share_ok:
|
2018-02-08 07:13:00 -04:00
|
|
|
share_possibility.append(stream)
|
|
|
|
if share_possibility:
|
|
|
|
# sort the possible sharings so minimise impact on high priority streams
|
|
|
|
share_possibility = sorted(share_possibility, key=lambda x: get_sharing_priority(stream_assign[x], priority_list))
|
|
|
|
# and take the one with the least impact (lowest value for highest priority stream share)
|
|
|
|
stream = share_possibility[-1]
|
|
|
|
if debug:
|
|
|
|
print("Sharing %s on %s with %s" % (periph, stream,
|
|
|
|
stream_assign[stream]))
|
|
|
|
curr_dict[periph] = stream
|
|
|
|
stream_assign[stream].append(periph)
|
|
|
|
unassigned_new.remove(periph)
|
2018-01-30 01:24:13 -04:00
|
|
|
unassigned = unassigned_new
|
|
|
|
|
2019-02-14 06:18:13 -04:00
|
|
|
if debug:
|
|
|
|
print(stream_assign)
|
|
|
|
|
2018-03-13 21:28:14 -03:00
|
|
|
f.write("\n\n// auto-generated DMA mapping from dma_resolver.py\n")
|
2018-01-30 01:24:13 -04:00
|
|
|
|
|
|
|
if unassigned:
|
|
|
|
f.write(
|
|
|
|
"\n// Note: The following peripherals can't be resolved for DMA: %s\n\n"
|
|
|
|
% unassigned)
|
|
|
|
|
|
|
|
for key in sorted(curr_dict.keys()):
|
|
|
|
stream = curr_dict[key]
|
|
|
|
shared = ''
|
|
|
|
if len(stream_assign[stream]) > 1:
|
|
|
|
shared = ' // shared %s' % ','.join(stream_assign[stream])
|
2019-02-06 17:10:40 -04:00
|
|
|
if curr_dict[key] == "STM32_DMA_STREAM_ID_ANY":
|
|
|
|
f.write("#define %-30s STM32_DMA_STREAM_ID_ANY\n" % (chibios_dma_define_name(key)+'STREAM'))
|
2019-02-19 22:55:18 -04:00
|
|
|
f.write("#define %-30s %s\n" % (chibios_dma_define_name(key)+'CHAN', dmamux_channel(key)))
|
2019-02-06 17:10:40 -04:00
|
|
|
continue
|
|
|
|
else:
|
2019-03-02 05:21:36 -04:00
|
|
|
dma_controller = curr_dict[key][0]
|
|
|
|
if dma_controller == 3:
|
|
|
|
# for BDMA we use 3 in the resolver
|
|
|
|
dma_controller = 1
|
|
|
|
f.write("#define %-30s STM32_DMA_STREAM_ID(%u, %u)%s\n" %
|
|
|
|
(chibios_dma_define_name(key)+'STREAM', dma_controller,
|
|
|
|
curr_dict[key][1], shared))
|
2018-03-13 21:28:14 -03:00
|
|
|
for streamchan in dma_map[key]:
|
|
|
|
if stream == (streamchan[0], streamchan[1]):
|
2019-02-14 06:18:13 -04:00
|
|
|
if have_DMAMUX:
|
2019-02-19 22:55:18 -04:00
|
|
|
chan = dmamux_channel(key)
|
2019-02-14 06:18:13 -04:00
|
|
|
else:
|
|
|
|
chan = streamchan[2]
|
|
|
|
f.write("#define %-30s %s\n" %
|
|
|
|
(chibios_dma_define_name(key)+'CHAN', chan))
|
2018-03-13 21:28:14 -03:00
|
|
|
break
|
2018-01-30 01:24:13 -04:00
|
|
|
|
2019-02-20 02:17:38 -04:00
|
|
|
# now generate UARTDriver.cpp DMA config lines
|
2018-01-30 01:24:13 -04:00
|
|
|
f.write("\n\n// generated UART DMA configuration lines\n")
|
|
|
|
for u in range(1, 9):
|
|
|
|
key = None
|
|
|
|
if 'USART%u_TX' % u in peripheral_list:
|
|
|
|
key = 'USART%u' % u
|
|
|
|
if 'UART%u_TX' % u in peripheral_list:
|
|
|
|
key = 'UART%u' % u
|
|
|
|
if 'USART%u_RX' % u in peripheral_list:
|
|
|
|
key = 'USART%u' % u
|
|
|
|
if 'UART%u_RX' % u in peripheral_list:
|
|
|
|
key = 'UART%u' % u
|
|
|
|
if key is None:
|
|
|
|
continue
|
2019-02-14 06:18:13 -04:00
|
|
|
if have_DMAMUX:
|
2019-02-13 19:13:00 -04:00
|
|
|
# use DMAMUX ID as channel number
|
2019-02-19 22:55:18 -04:00
|
|
|
dma_rx_chn = dmamux_channel(key + "_RX")
|
|
|
|
dma_tx_chn = dmamux_channel(key + "_TX")
|
2019-02-06 17:10:40 -04:00
|
|
|
else:
|
2019-02-19 22:55:18 -04:00
|
|
|
dma_rx_chn = "STM32_UART_%s_RX_%s_CHAN" % (key, dma_name(key))
|
|
|
|
dma_tx_chn = "STM32_UART_%s_TX_%s_CHAN" % (key, dma_name(key))
|
2019-02-06 17:10:40 -04:00
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
f.write("#define STM32_%s_RX_DMA_CONFIG " % key)
|
|
|
|
if key + "_RX" in curr_dict:
|
|
|
|
f.write(
|
2019-02-19 22:55:18 -04:00
|
|
|
"true, STM32_UART_%s_RX_%s_STREAM, %s\n" % (key, dma_name(key), dma_rx_chn))
|
2018-01-30 01:24:13 -04:00
|
|
|
else:
|
|
|
|
f.write("false, 0, 0\n")
|
|
|
|
f.write("#define STM32_%s_TX_DMA_CONFIG " % key)
|
|
|
|
if key + "_TX" in curr_dict:
|
|
|
|
f.write(
|
2019-02-19 22:55:18 -04:00
|
|
|
"true, STM32_UART_%s_TX_%s_STREAM, %s\n" % (key, dma_name(key), dma_tx_chn))
|
2018-01-30 01:24:13 -04:00
|
|
|
else:
|
|
|
|
f.write("false, 0, 0\n")
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2019-02-20 02:17:38 -04:00
|
|
|
# now generate SPI DMA streams lines
|
|
|
|
f.write("\n\n// generated SPI DMA configuration lines\n")
|
|
|
|
for u in range(1, 9):
|
|
|
|
if 'SPI%u_TX' % u in peripheral_list and 'SPI%u_RX' % u in peripheral_list:
|
|
|
|
key = 'SPI%u' % u
|
|
|
|
else:
|
|
|
|
continue
|
|
|
|
f.write('#define STM32_SPI_%s_DMA_STREAMS STM32_SPI_%s_TX_%s_STREAM, STM32_SPI_%s_RX_%s_STREAM\n' % (
|
|
|
|
key, key, dma_name(key), key, dma_name(key)))
|
2019-12-29 03:56:28 -04:00
|
|
|
return unassigned
|
2019-02-20 02:17:38 -04:00
|
|
|
|
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
if __name__ == '__main__':
|
2018-01-30 01:24:13 -04:00
|
|
|
import optparse
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
parser = optparse.OptionParser("dma_resolver.py")
|
|
|
|
parser.add_option("-M", "--mcu", default=None, help='MCU type')
|
|
|
|
parser.add_option(
|
|
|
|
"-D", "--debug", action='store_true', help='enable debug')
|
|
|
|
parser.add_option(
|
|
|
|
"-P",
|
|
|
|
"--peripherals",
|
|
|
|
default=None,
|
|
|
|
help='peripheral list (comma separated)')
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
opts, args = parser.parse_args()
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
if opts.peripherals is None:
|
|
|
|
print("Please provide a peripheral list with -P")
|
|
|
|
sys.exit(1)
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
if opts.mcu is None:
|
|
|
|
print("Please provide a MCU type with -<")
|
|
|
|
sys.exit(1)
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
debug = opts.debug
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
plist = opts.peripherals.split(',')
|
|
|
|
mcu_type = opts.mcu
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-01-30 01:24:13 -04:00
|
|
|
f = open("dma.h", "w")
|
|
|
|
write_dma_header(f, plist, mcu_type)
|
2018-02-06 03:20:09 -04:00
|
|
|
|