📄 chip_access.c
字号:
/* * $QNXLicenseC: * Copyright 2007, QNX Software Systems. * * Licensed under the Apache License, Version 2.0 (the "License"). You * may not reproduce, modify or distribute this software except in * compliance with the License. You may obtain a copy of the License * at: http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OF ANY KIND, either express or implied. * * This file may contain contributions from others, either as * contributors under the License or as licensors under other terms. * Please review this entire file for other proprietary rights or license * notices, as well as the QNX Development Suite License Guide at * http://licensing.qnx.com/license-guide/ for other information. * $ */ #include "startup.h"static union { uint8_t *p; uintptr_t port;} chip_base;static unsigned chip_shift;static int chip_mmap;voidchip_access(paddr_t base, unsigned reg_shift, unsigned mem_mapped, unsigned size) { chip_shift = reg_shift; chip_mmap = mem_mapped; if(mem_mapped) { chip_base.p = startup_memory_map(size << reg_shift, base, PROT_READ|PROT_WRITE|PROT_NOCACHE); } else { chip_base.port = startup_io_map(size << reg_shift, base); }}voidchip_done() { if(chip_mmap) { startup_memory_unmap(chip_base.p); } else { startup_io_unmap(chip_base.port); }}unsignedchip_read8(unsigned off) { unsigned disp = (off << chip_shift); uint8_t val; if(chip_mmap) { val = chip_base.p[disp]; } else { val = in8(chip_base.port + disp); } return(val);}voidchip_write8(unsigned off, unsigned val) { unsigned disp = (off << chip_shift); if(chip_mmap) { chip_base.p[disp] = val; } else { out8(chip_base.port + disp, val); }}unsignedchip_read16(unsigned off) { unsigned disp = (off << chip_shift); uint16_t val; if(chip_mmap) { val = *((uint16_t*) (&chip_base.p[disp])); } else { val = in16(chip_base.port + disp); } return(val);}voidchip_write16(unsigned off, unsigned val) { unsigned disp = (off << chip_shift); if(chip_mmap) { *((uint16_t*) (&chip_base.p[disp])) = val; } else { out16(chip_base.port + disp, val); }}unsignedchip_read32(unsigned off) { unsigned disp = (off << chip_shift); uint32_t val; if(chip_mmap) { val = *((uint32_t*) (&chip_base.p[disp])); } else { val = in32(chip_base.port + disp); } return(val);}voidchip_write32(unsigned off, unsigned val) { unsigned disp = (off << chip_shift); if(chip_mmap) { *((uint32_t*) (&chip_base.p[disp])) = val; } else { out32(chip_base.port + disp, val); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -