aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/include
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-05-11 16:18:24 -0700
committerMartin Braun <martin.braun@ettus.com>2017-12-22 15:03:53 -0800
commit8ebd4d8e5fbfdc612ad5dd8ec212c76bd8cf4ed6 (patch)
tree2f87c6dd3e27aa454c0bbeb45a0da7e0de08ef74 /mpm/include
parentb39dafa1eebf327a8bbd3959a3c54e85707b56aa (diff)
downloaduhd-8ebd4d8e5fbfdc612ad5dd8ec212c76bd8cf4ed6.tar.gz
uhd-8ebd4d8e5fbfdc612ad5dd8ec212c76bd8cf4ed6.tar.bz2
uhd-8ebd4d8e5fbfdc612ad5dd8ec212c76bd8cf4ed6.zip
mpm: spi: Added 16-bit access to SPI regs
Diffstat (limited to 'mpm/include')
-rw-r--r--mpm/include/mpm/types/regs_iface.hpp13
-rw-r--r--mpm/include/mpm/types/types_python.hpp2
2 files changed, 15 insertions, 0 deletions
diff --git a/mpm/include/mpm/types/regs_iface.hpp b/mpm/include/mpm/types/regs_iface.hpp
index 78e590b23..80005a4b0 100644
--- a/mpm/include/mpm/types/regs_iface.hpp
+++ b/mpm/include/mpm/types/regs_iface.hpp
@@ -41,6 +41,19 @@ namespace mpm { namespace types {
const uint32_t addr,
const uint8_t data
) = 0;
+
+ /*! Return a 16-bit value from a given address
+ */
+ virtual uint16_t peek16(
+ const uint32_t addr
+ ) = 0;
+
+ /*! Write a 16-bit value to a given address
+ */
+ virtual void poke16(
+ const uint32_t addr,
+ const uint16_t data
+ ) = 0;
};
}}; /* namespace mpm::regs */
diff --git a/mpm/include/mpm/types/types_python.hpp b/mpm/include/mpm/types/types_python.hpp
index a0a00aa48..ef31408e7 100644
--- a/mpm/include/mpm/types/types_python.hpp
+++ b/mpm/include/mpm/types/types_python.hpp
@@ -31,6 +31,8 @@ void export_types() {
bp::class_<regs_iface, boost::noncopyable, std::shared_ptr<regs_iface> >("regs_iface", bp::no_init)
.def("peek8", &regs_iface::peek8)
.def("poke8", &regs_iface::poke8)
+ .def("peek16", &regs_iface::peek16)
+ .def("poke16", &regs_iface::poke16)
;
}