[msm8x60]: Autodetect 8660 SURF and FFA

Writing to Debug LED register and reading it back to detect SURF or FFA.
This is a workaround till we get EPROM enabled in the devices.

Change-Id: Id8416cd5330363ad9c89dd4656c62f9c0ce54ba0
diff --git a/include/reg.h b/include/reg.h
index d04d4ea..b5dd528 100644
--- a/include/reg.h
+++ b/include/reg.h
@@ -39,4 +39,6 @@
 #define writel(v, a) (*REG32(a) = (v))
 #define readl(a) (*REG32(a))
 
+#define writeb(v, a) (*REG8(a) = (v))
+#define readb(a) (*REG8(a))
 #endif