summaryrefslogtreecommitdiffstats
path: root/vpnor/mboxd_msg.cpp
diff options
context:
space:
mode:
authorAndrew Jeffery <andrew@aj.id.au>2018-03-26 15:37:33 +1030
committerAndrew Jeffery <andrew@aj.id.au>2018-04-04 17:27:31 +0930
commit943aba060f143667d502792f11e95f42bc7da346 (patch)
tree2cc5dcc7e4e82a1672daa3fec77f2df0c8fac738 /vpnor/mboxd_msg.cpp
parentefb09def5e21959972adde9f5c092f1840eff908 (diff)
downloadphosphor-mboxd-943aba060f143667d502792f11e95f42bc7da346.tar.gz
phosphor-mboxd-943aba060f143667d502792f11e95f42bc7da346.zip
vpnor: Configure a handler table in init_vpnor()
Currently the table just mirrors that which is set by the regular implementation, however getting to that point requires massaging the code a little. Thus, separate out this change from one that changes the behaviour of the commands to improve the readability of the latter change. Change-Id: I4007a8a4d508c6d850b8cc878bab8f72bd343498 Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Diffstat (limited to 'vpnor/mboxd_msg.cpp')
-rw-r--r--vpnor/mboxd_msg.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/vpnor/mboxd_msg.cpp b/vpnor/mboxd_msg.cpp
new file mode 100644
index 0000000..130c098
--- /dev/null
+++ b/vpnor/mboxd_msg.cpp
@@ -0,0 +1,24 @@
+#include "config.h"
+
+extern "C" {
+#include "mbox.h"
+#include "mboxd_msg.h"
+};
+
+#include "vpnor/mboxd_msg.hpp"
+
+// clang-format off
+const mboxd_mbox_handler vpnor_mbox_handlers[NUM_MBOX_CMDS] =
+{
+ mbox_handle_reset,
+ mbox_handle_mbox_info,
+ mbox_handle_flash_info,
+ mbox_handle_read_window,
+ mbox_handle_close_window,
+ mbox_handle_write_window,
+ mbox_handle_dirty_window,
+ mbox_handle_flush_window,
+ mbox_handle_ack,
+ mbox_handle_erase_window
+};
+// clang-format on
OpenPOWER on IntegriCloud