aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/microblaze/usrp2p/bootloader_utils.h
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-12-22 19:19:14 -0800
committerJosh Blum <josh@joshknows.com>2010-12-22 19:19:14 -0800
commit22ed61f97815856bf74cec25ae6bca88bfbe5f44 (patch)
tree7d87d49b46f9507ff10486097e6d79e4bee4cb81 /firmware/microblaze/usrp2p/bootloader_utils.h
parent71fc99d006f2347a356c5339905593f64ff902ec (diff)
downloaduhd-22ed61f97815856bf74cec25ae6bca88bfbe5f44.tar.gz
uhd-22ed61f97815856bf74cec25ae6bca88bfbe5f44.tar.bz2
uhd-22ed61f97815856bf74cec25ae6bca88bfbe5f44.zip
zpu: renamed the directory for the usrp2 fw to zpu to reflect the cpu type
Diffstat (limited to 'firmware/microblaze/usrp2p/bootloader_utils.h')
-rw-r--r--firmware/microblaze/usrp2p/bootloader_utils.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/firmware/microblaze/usrp2p/bootloader_utils.h b/firmware/microblaze/usrp2p/bootloader_utils.h
deleted file mode 100644
index 0f49ae6cd..000000000
--- a/firmware/microblaze/usrp2p/bootloader_utils.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/* -*- c++ -*- */
-/*
- * Copyright 2010 Ettus Research LLC
- *
- */
-
-#include <stdint.h>
-
-//we're working in bytes and byte addresses so we can run the same code with Flash chips of different sector sizes.
-//it's really 1463736, but rounded up to 1.5MB
-#define FPGA_IMAGE_SIZE_BYTES 1572864
-//16K
-#define FW_IMAGE_SIZE_BYTES 0x3fff
-
-#define SAFE_FPGA_IMAGE_LOCATION_ADDR 0x00000000
-#define SAFE_FW_IMAGE_LOCATION_ADDR 0x003F0000
-#define PROD_FPGA_IMAGE_LOCATION_ADDR 0x00180000
-#define PROD_FW_IMAGE_LOCATION_ADDR 0x00300000
-
-int is_valid_fpga_image(uint32_t addr);
-int is_valid_fw_image(uint32_t addr);
-void start_program(void);