Config option to enable PHAL APIs

There are a couple required PHAL APIs that are not available upstream.
It is uncertain if these APIs will ever be available upstream.
Fortunately, the APIs are only needed to provide information that is
displayed in a PEL. So there is a less accuate alternative when the APIs
are not available.

Change-Id: I1a4a1838520c18053ab31f561d05875d4a94c20e
Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
diff --git a/util/meson.build b/util/meson.build
index 1258b1f..e4f94c0 100644
--- a/util/meson.build
+++ b/util/meson.build
@@ -11,6 +11,10 @@
     libpdbg_dep,
 ]
 
+if get_option('phal').enabled()
+    util_deps += dependency('libdt-api')
+endif
+
 # Create static library.
 util_lib = static_library(
     'util_lib',