blob: 93a35321ef7b6003c55835358dc1ff2aeb00e1ac [file] [log] [blame]
developer930b9e52022-04-15 15:55:45 +08001/*
2 * pcimem.c: Simple program to read/write from/to a pci device from userspace.
3 *
4 * Copyright (C) 2010, Bill Farrow (bfarrow@beyondelectronics.us)
5 *
6 * Based on the devmem2.c code
7 * Copyright (C) 2000, Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl)
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <stdint.h>
28#include <unistd.h>
29#include <string.h>
30#include <errno.h>
31#include <signal.h>
32#include <fcntl.h>
33#include <ctype.h>
34#include <termios.h>
35#include <sys/types.h>
36#include <sys/mman.h>
37
38#define PRINT_ERROR \
39 do { \
40 fprintf(stderr, "Error at line %d, file %s (%d) [%s]\n", \
41 __LINE__, __FILE__, errno, strerror(errno)); exit(1); \
42 } while(0)
43
44#define MAP_SIZE 4096UL
45#define MAP_MASK (MAP_SIZE - 1)
46
47void dump_page(uint32_t *vaddr, uint32_t *vbase, uint32_t *pbase){
48
49 int i =0;
50 uint32_t *end = vaddr + (MAP_SIZE >> 6);
51 uint32_t *start = vaddr;
52
53 while(start < end) {
54 printf("%p:%08x %08x %08x %08x\n",
55 start - vbase + pbase, start[0], start[1] , start[2], start[3]);
56 start+=4;
57 }
58}
59
60void reg_mod_bits(uint32_t *virt_addr, int data, int start_bit, int data_len)
61{
62 int mask=0;
63 int value;
64 int i;
65
66 for (i = 0; i < data_len; i++) {
67 mask |= 1 << (start_bit + i);
68 }
69
70 value = *((volatile uint32_t *) virt_addr);
71 value &= ~mask;
72 value |= (data << start_bit) & mask;;
73
74 *((uint32_t *) virt_addr) = value;
75}
76
77void usage(void)
78{
79 fprintf(stderr, "\nUsage:\tregs [Type] [ Offset:Hex ] [ Data:Hex ] [StartBit:Dec] [DataLen:Dec]\n"
80 "\tType : access operation type : [m]odify, [w]wite, [d]ump\n"
81 "\tOffset : offset into memory region to act upon\n"
82 "\tData : data to be written\n"
83 "\tStartbit: Startbit of Addr that want to be modified\n"
84 "\tDataLen : Data length of Data\n\n"
85 "Example:\tRead/Write/Modify register \n"
86 "\tRead : regs d 0x1b100000 //dump 0x1b100000~0x1b1000f0 \n"
87 "\tWrite : regs w 0x1b100000 0x1234 //write 0x1b100000=0x1234\n"
88 "\tModify : regs m 0x1b100000 0x0 29 3 //modify 0x1b100000[29:31]=0\n");
89}
90
91int main(int argc, char **argv) {
92 int fd;
93 void *map_base = NULL;
94 void *virt_addr = NULL;
95 uint32_t read_result =0;
96 uint32_t writeval = 0;
97 uint32_t startbit = 0;
98 uint32_t datalen = 0;
99 char *filename = NULL;
100 off_t offset = 0;
101 int access_type = 0;
102
103 if(argc < 2) {
104 usage();
105 exit(1);
106 }
107
108 access_type = tolower(argv[1][0]);
109 if((access_type == 'd' && argc < 3) || (access_type == 'w' && argc < 4) || (access_type == 'm' && argc < 6)) {
110 usage();
111 exit(1);
112 }
113
114 filename = "/dev/mem";
115 if((fd = open(filename, O_RDWR | O_SYNC)) == -1)
116 PRINT_ERROR;
117
118 /* Map one page */
119 offset = strtoul(argv[2], NULL, 16);
120 map_base = mmap(0, 2*MAP_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, offset & ~MAP_MASK);
121 if(map_base == (void *) -1)
122 PRINT_ERROR;
123
124 virt_addr = map_base + (offset & MAP_MASK);
125 read_result = *((volatile uint32_t *) virt_addr);
126 printf("Value at 0x%X (%p): 0x%X\n", offset, virt_addr, read_result);
127
128 switch(access_type) {
129 case 'm':
130 writeval = strtoul(argv[3], 0, 16);
131 startbit = strtoul(argv[4], 0, 10);
132 datalen = strtoul(argv[5], 0, 10);
133 reg_mod_bits((uint32_t *)virt_addr, writeval, startbit, datalen);
134 break;
135 case 'w':
136 writeval = strtoul(argv[3], 0, 16);
137 *((uint32_t *) virt_addr) = writeval;
138 break;
139 case 'd':
140 dump_page(virt_addr, map_base, (uint32_t *)(offset & ~MAP_MASK));
141 return;
142 default:
143 fprintf(stderr, "Illegal data type '%c'.\n", access_type);
144 exit(2);
145 }
146
147 read_result = *((volatile uint32_t *) virt_addr);
148 printf("Written 0x%X; Readback 0x%X\n", writeval, read_result);
149
150 if(munmap(map_base, MAP_SIZE) == -1)
151 PRINT_ERROR;
152
153 close(fd);
154 return 0;
155}