summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAgathe Porte <microjoe@microjoe.org>2020-02-08 14:28:16 +0100
committerAgathe Porte <microjoe@microjoe.org>2020-02-08 14:28:16 +0100
commit9b1f700dc54cd1eb6dc73e3260b2c284ec91cca4 (patch)
tree9d407e0c951d04578afc442723563d5cc78c7cb3 /src
parent61a61f3907e802f0be9bc0039a84ebaabba7b372 (diff)
downloadcharlcd-9b1f700dc54cd1eb6dc73e3260b2c284ec91cca4.tar.gz
charlcd-9b1f700dc54cd1eb6dc73e3260b2c284ec91cca4.zip
add width and height support (hack)
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs27
-rw-r--r--src/of_node.rs24
2 files changed, 51 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index f849712..0e32ee9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,5 @@
mod codes;
+mod of_node;
use std::fs::{File, OpenOptions};
use std::path::Path;
@@ -198,4 +199,30 @@ impl FileScreen {
pub fn default() -> std::io::Result<FileScreen> {
Screen::from_dev_path(&Path::new(DEFAULT_SCREEN_DEV_PATH))
}
+
+ /// Get the width of the screen, in number of characters it can display.
+ ///
+ /// **Important note:** The implementation behind this function is
+ /// currently a hack that will go find the value in the `auxdisplay`
+ /// platform device tree node in
+ /// `/sys/devices/platform/auxdisplay/of_node/*`. This is because the
+ /// `charlcd` driver does not export the screen width nor height to
+ /// userspace (could be using `ioctl` or `read` syscalls).
+ ///
+ pub fn width(&self) -> std::io::Result<u32> {
+ of_node::display_width_chars()
+ }
+
+ /// Get the height of the screen, in number of characters it can display.
+ ///
+ /// **Important note:** The implementation behind this function is
+ /// currently a hack that will go find the value in the `auxdisplay`
+ /// platform device tree node in
+ /// `/sys/devices/platform/auxdisplay/of_node/*`. This is because the
+ /// `charlcd` driver does not export the screen width nor height to
+ /// userspace (could be using `ioctl` or `read` syscalls).
+ ///
+ pub fn height(&self) -> std::io::Result<u32> {
+ of_node::display_height_chars()
+ }
}
diff --git a/src/of_node.rs b/src/of_node.rs
new file mode 100644
index 0000000..5dff2a0
--- /dev/null
+++ b/src/of_node.rs
@@ -0,0 +1,24 @@
+// This module is a hack to read additional information in the DT nodes in the
+// kernel to retrieve data that is currently not exposed in the charlcd.c
+// driver.
+
+use std::fs::File;
+use std::io::Result;
+
+use byteorder::{BigEndian, ReadBytesExt};
+
+fn read_u32_node(node_name: &str) -> Result<u32> {
+ let mut f = File::open(format!(
+ "/sys/devices/platform/auxdisplay/of_node/{}",
+ node_name
+ ))?;
+ Ok(f.read_u32::<BigEndian>()?)
+}
+
+pub fn display_height_chars() -> Result<u32> {
+ read_u32_node("display-height-chars")
+}
+
+pub fn display_width_chars() -> Result<u32> {
+ read_u32_node("display-width-chars")
+}