You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

72 lines
2.5 KiB

  1. #***************************************************************************
  2. #* Copyright (C) 2008 Lou Deluxe *
  3. #* lou.openocd012@fixit.nospammail.net *
  4. #* *
  5. #* This program is free software; you can redistribute it and/or modify *
  6. #* it under the terms of the GNU General Public License as published by *
  7. #* the Free Software Foundation; either version 2 of the License, or *
  8. #* (at your option) any later version. *
  9. #* *
  10. #* This program is distributed in the hope that it will be useful, *
  11. #* but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. #* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. #* GNU General Public License for more details. *
  14. #* *
  15. #* You should have received a copy of the GNU General Public License *
  16. #* along with this program. If not, see <http://www.gnu.org/licenses/>. *
  17. #***************************************************************************
  18. TOP = ../../..
  19. INTERFACE_NAME = rlink
  20. PERL = perl
  21. M4 = m4
  22. TARGETDIR = ${TOP}/src/target
  23. TOOLSDIR = ${TOP}/tools
  24. MAKE_SPEED_TABLE = ${TOOLSDIR}/rlink_make_speed_table/rlink_make_speed_table
  25. ST7_DTC_AS = ${TOOLSDIR}/st7_dtc_as/st7_dtc_as
  26. OPENOCD = ${TOP}/src/openocd
  27. OPENOCD_CONFIG = -s ${TARGETDIR}
  28. OPENOCD_CONFIG += -f interface/rlink.cfg
  29. OPENOCD_CONFIG += -f board/stm32f10x_128k_eval.cfg
  30. PATCHFILE = /tmp/openocd_${INTERFACE_NAME}.diff.gz
  31. # relative to ${TOP}
  32. SVNADDFILES =
  33. SVNADDFILES += src/target/interface/rlink.cfg
  34. SVNADDFILES += src/jtag/${INTERFACE_NAME}.c
  35. SVNADDFILES += src/jtag/${INTERFACE_NAME}
  36. PRESCALERS = 64 11 8 2
  37. DTCFILES =
  38. DTCFILES += $(addsuffix _init.dtc, ${PRESCALERS})
  39. DTCFILES += $(addsuffix _call.dtc, ${PRESCALERS})
  40. default: rlink_speed_table.c clean
  41. %_init.fsm: rlink_init.m4
  42. ${M4} -P -DSHIFTER_PRESCALER=`echo "$@" | sed -e's/_.*//'` $< > $@
  43. %_call.fsm: rlink_call.m4
  44. ${M4} -P -DSHIFTER_PRESCALER=`echo "$@" | sed -e's/_.*//'` $< > $@
  45. %.dtc: %.fsm
  46. ${ST7_DTC_AS} -b -o $@ -i $< > /dev/null
  47. rlink_speed_table.c: ${DTCFILES}
  48. ${MAKE_SPEED_TABLE} ${PRESCALERS} > $@ || rm $@
  49. clean:
  50. -rm *.dtc *.fsm
  51. distclean: clean
  52. test: default
  53. (cd ${TOP} && (rm src/jtag/${INTERFACE_NAME}.o; ${MAKE}))
  54. ${OPENOCD} -d0 ${OPENOCD_CONFIG} -c init -c 'poll off'