summaryrefslogtreecommitdiff
path: root/src/pld
Commit message (Expand)AuthorAgeFilesLines
* remove tertiary include pathsZachary T Welch2009-12-031-4/+1
* change #include "jtag.h" to <jtag/jtag.h>Zachary T Welch2009-12-031-1/+1
* change #include "types.h" to <helper/types.h>Zachary T Welch2009-12-031-1/+1
* change #include "time_support.h" to <helper/time_support.h>Zachary T Welch2009-12-031-1/+1
* change #include "log.h" to <helper/log.h>Zachary T Welch2009-12-032-2/+2
* change #include "command.h" to <helper/command.h>Zachary T Welch2009-12-031-1/+1
* allow #include directives to use module nameZachary T Welch2009-12-031-0/+1
* pld: factor init to 'pld init'Zachary T Welch2009-12-021-0/+23
* pld: use static registration instead of callbackZachary T Welch2009-11-243-12/+12
* pld: use register_commands()Zachary T Welch2009-11-242-22/+60
* use COMMAND_REGISTER macroZachary T Welch2009-11-242-6/+6
* command_handler: change 'cmd_ctx' to CMD_CTXZachary T Welch2009-11-172-11/+11
* command_handler: change 'args' to CMD_ARGVZachary T Welch2009-11-172-13/+13
* command_handler: change to 'argc' to CMD_ARGCZachary T Welch2009-11-172-4/+4
* rename CEIL as DIV_ROUND_UPZachary T Welch2009-11-161-1/+1
* command_t -> struct commandZachary T Welch2009-11-132-2/+2
* command_context_t -> struct command_contextZachary T Welch2009-11-133-6/+6
* pld_device_t -> struct pld_deviceZachary T Welch2009-11-133-19/+19
* virtex2_pld_device_t -> struct virtex2_pld_deviceZachary T Welch2009-11-132-8/+8
* xilinx_bit_file_t -> struct xilinx_bit_fileZachary T Welch2009-11-133-5/+5
* pld_driver_t -> struct pld_driverZachary T Welch2009-11-133-6/+6
* scan_field_t -> struct scan_fieldZachary T Welch2009-11-131-4/+4
* jtag_tap_t -> struct jtag_tapZachary T Welch2009-11-132-3/+3
* use CALL_COMMAND_HANDLER instead of direct callsZachary T Welch2009-11-131-1/+2
* add PLD_DEVICE_COMMAND_HANDLER macroZachary T Welch2009-11-132-4/+9
* use COMMAND_HANDLER macro to define all commandsZachary T Welch2009-11-132-8/+4
* remove more useless declarationsZachary T Welch2009-11-112-42/+34
* add const keyword to some APIsZachary T Welch2009-11-114-4/+4
* src/{server,pld,svf,xsvf}: remove 'extern' keywordZachary T Welch2009-11-091-3/+5
* Improve pld command argument parsing.Zachary T Welch2009-11-052-6/+11
* - Replace '){' with ') {'.zwelch2009-06-231-1/+1
* Remove whitespace that occurs before ')'.zwelch2009-06-231-1/+1
* Remove whitespace that occurs after '('.zwelch2009-06-231-1/+1
* - Fixes '=' whitespacezwelch2009-06-231-1/+1
* C99 printf() -Werror fixesduane2009-06-212-3/+3
* fix jtag_add_callback() args. The first argument is nothing special, it's jus...oharboe2009-06-191-2/+3
* Finish transforming 'u32' to 'uint32_t'.zwelch2009-06-183-9/+9
* Transform 'u8' to 'uint8_t'zwelch2009-06-183-12/+12
* David Brownell <david-b@pacbell.net>:zwelch2009-06-183-77/+77
* Fix make maintainer-clean for out-of-tree builds.zwelch2009-06-091-1/+1
* Eliminate MixedCaps symbol from public JTAG TAP API:zwelch2009-06-051-1/+1
* Rename jtag_add_end_state to jtag_set_end_state since "add" implies thatoharboe2009-06-041-8/+8
* no longer use jtag_add_xxx() to set end state to TAP_DRPAUSEoharboe2009-06-041-3/+3
* no longer use jtag_add_xxx() to set end state to TAP_IDLE. Same must be done ...oharboe2009-06-041-3/+3
* Author: Rick Altherr <kc8apf@kc8apf.net>kc8apf2009-05-221-2/+2
* David Brownell <david-b@pacbell.net>: This patch adds annotations tozwelch2009-05-211-4/+5
* switch to jtag_add_dr_scan() from the synchronous version - USB performance fixoharboe2009-05-111-4/+11
* Audit and eliminate redundant #include directives in src/{pld,svf,xsvf}.zwelch2009-05-114-30/+2
* Remove redundant sys/types.h #include directives (now in types.h).zwelch2009-05-112-2/+0
* Extend autotools build to create shared library libopenocd with libtool:zwelch2009-05-101-2/+2
564' href='#n564'>564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842