blob: 43397dd4a072ca989a1abc029fbf919a1c5e3595 [file] [log] [blame]
developerfd40db22021-04-29 10:08:25 +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 if ((start_bit < 0) || (start_bit > 31) ||
67 (data_len < 1) || (data_len > 32) ||
68 (start_bit + data_len > 32)) {
69 fprintf(stderr, "Startbit range[0~31], and DataLen range[1~32], and Startbit + DataLen <= 32\n");
70 return;
71 }
72
73 for (i = 0; i < data_len; i++)
74 mask |= 1 << (start_bit + i);
75
76 value = *((volatile uint32_t *) virt_addr);
77 value &= ~mask;
78 value |= (data << start_bit) & mask;;
79
80 *((uint32_t *) virt_addr) = value;
81
82 printf("Modify 0x%X[%d:%d]; ", data, start_bit + data_len - 1, start_bit);
83}
84
85void usage(void)
86{
87 fprintf(stderr, "\nUsage:\tregs [Type] [ Offset:Hex ] [ Data:Hex ] [StartBit:Dec] [DataLen:Dec]\n"
88 "\tType : access operation type : [m]odify, [w]wite, [d]ump\n"
89 "\tOffset : offset into memory region to act upon\n"
90 "\tData : data to be written\n"
91 "\tStartbit: Startbit of Addr that want to be modified. Range[0~31]\n"
92 "\tDataLen : Data length of Data. Range[1~32], and Startbit + DataLen <= 32\n\n"
93 "Example:\tRead/Write/Modify register \n"
94 "\tRead : regs d 0x1b100000 //dump 0x1b100000~0x1b1000f0 \n"
95 "\tWrite : regs w 0x1b100000 0x1234 //write 0x1b100000=0x1234\n"
96 "\tModify : regs m 0x1b100000 0x0 29 3 //modify 0x1b100000[29:31]=0\n");
97}
98
99int main(int argc, char **argv) {
100 int fd;
101 void *map_base = NULL;
102 void *virt_addr = NULL;
103 uint32_t read_result =0;
104 uint32_t writeval = 0;
105 uint32_t startbit = 0;
106 uint32_t datalen = 0;
107 char *filename = NULL;
108 off_t offset = 0;
109 int access_type = 0;
110
111 if(argc < 3) {
112 usage();
113 exit(1);
114 }
115
116 access_type = tolower(argv[1][0]);
117 if ((access_type == 'w' && argc < 4) || (access_type == 'm' && argc < 6)) {
118 usage();
119 exit(1);
120 }
121
122 filename = "/dev/mem";
123 if((fd = open(filename, O_RDWR | O_SYNC)) == -1)
124 PRINT_ERROR;
125
126 /* Map one page */
127 offset = strtoul(argv[2], NULL, 16);
128 map_base = mmap(0, 2*MAP_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, offset & ~MAP_MASK);
129 if(map_base == (void *) -1)
130 PRINT_ERROR;
131
132 virt_addr = map_base + (offset & MAP_MASK);
133 read_result = *((volatile uint32_t *) virt_addr);
134 printf("Value at 0x%llX (%p): 0x%X\n",
135 (unsigned long long)offset, virt_addr, read_result);
136
137 switch(access_type) {
138 case 'm':
139 writeval = strtoul(argv[3], 0, 16);
140 startbit = strtoul(argv[4], 0, 10);
141 datalen = strtoul(argv[5], 0, 10);
142 reg_mod_bits((uint32_t *)virt_addr, writeval, startbit, datalen);
143 break;
144 case 'w':
145 writeval = strtoul(argv[3], 0, 16);
146 *((uint32_t *) virt_addr) = writeval;
147 printf("Written 0x%X; ", writeval);
148 break;
149 case 'd':
150 dump_page(virt_addr, map_base, (uint32_t *)(offset & ~MAP_MASK));
151 goto out;
152 default:
153 fprintf(stderr, "Illegal data type '%c'.\n", access_type);
154 goto out;
155 }
156
157 read_result = *((volatile uint32_t *) virt_addr);
158 printf("Readback 0x%X\n", read_result);
159
160out:
161 if(munmap(map_base, MAP_SIZE) == -1)
162 PRINT_ERROR;
163
164 close(fd);
165 return 0;
166}