Miscellaneous updates to inventory interfaces

- Placed interfaces corresponding to physical items under
  Inventory/Item/ and interfaces which serve as item decorators under
  Inventory/Decorator/.
- Add some new dbus interfaces.
- Restructured Board item related interfaces such that there's a parent
  Board interface, and derivatives such as Motherboard, IO board, etc.
- Added new properties to existing interfaces.

Change-Id: I52b7c1a789df6745d1786d927fab06db40524448
Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
diff --git a/xyz/openbmc_project/Inventory/Decorator/Asset.interface.yaml b/xyz/openbmc_project/Inventory/Decorator/Asset.interface.yaml
new file mode 100644
index 0000000..d105dd3
--- /dev/null
+++ b/xyz/openbmc_project/Inventory/Decorator/Asset.interface.yaml
@@ -0,0 +1,26 @@
+description: >
+    Implement to provide item physical asset attributes.
+properties:
+    - name: PartNumber
+      type: string
+      description: >
+          The item part number, typically a stocking number.
+    - name: SerialNumber
+      type: string
+      description: >
+          The item serial number.
+    - name: Manufacturer
+      type: string
+      description: >
+          The item manufacturer.
+    - name: BuildDate
+      type: string
+      description: >
+          The date of item manufacture in
+          YYYYMMDD format.
+    - name: Model
+      type: string
+      description: >
+          The model of the item.
+
+# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
diff --git a/xyz/openbmc_project/Inventory/Decorator/Cacheable.interface.yaml b/xyz/openbmc_project/Inventory/Decorator/Cacheable.interface.yaml
new file mode 100644
index 0000000..2809de0
--- /dev/null
+++ b/xyz/openbmc_project/Inventory/Decorator/Cacheable.interface.yaml
@@ -0,0 +1,10 @@
+description: >
+    Implement to indicate item availability changes.
+properties:
+    - name: Cached
+      type: boolean
+      description: >
+          Whether or not the item is cached.  When true, the item
+          and its remaining attributes are undefined.
+
+# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
diff --git a/xyz/openbmc_project/Inventory/Decorator/Replaceable.interface.yaml b/xyz/openbmc_project/Inventory/Decorator/Replaceable.interface.yaml
new file mode 100644
index 0000000..0ba757b
--- /dev/null
+++ b/xyz/openbmc_project/Inventory/Decorator/Replaceable.interface.yaml
@@ -0,0 +1,9 @@
+description: >
+    Implement to provide item replacement attributes.
+properties:
+    - name: FieldReplaceable
+      type: boolean
+      description: >
+          Whether or not the item is field replaceable.
+
+# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
diff --git a/xyz/openbmc_project/Inventory/Decorator/Revision.interface.yaml b/xyz/openbmc_project/Inventory/Decorator/Revision.interface.yaml
new file mode 100644
index 0000000..7611671
--- /dev/null
+++ b/xyz/openbmc_project/Inventory/Decorator/Revision.interface.yaml
@@ -0,0 +1,9 @@
+description: >
+    Implement to provide item versioning attributes.
+properties:
+    - name: Version
+      type: string
+      description: >
+          The item version.
+
+# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
diff --git a/xyz/openbmc_project/Inventory/Decorator/VendorInformation.interface.yaml b/xyz/openbmc_project/Inventory/Decorator/VendorInformation.interface.yaml
new file mode 100644
index 0000000..6b6a131
--- /dev/null
+++ b/xyz/openbmc_project/Inventory/Decorator/VendorInformation.interface.yaml
@@ -0,0 +1,5 @@
+description: >
+    Implement to provide custom properties added to an item by the
+    item vendor.
+
+# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
diff --git a/xyz/openbmc_project/Inventory/Decorator/VoltageControl.interface.yaml b/xyz/openbmc_project/Inventory/Decorator/VoltageControl.interface.yaml
new file mode 100644
index 0000000..aefa894
--- /dev/null
+++ b/xyz/openbmc_project/Inventory/Decorator/VoltageControl.interface.yaml
@@ -0,0 +1,4 @@
+description: >
+    Implement to enable voltage configuration for the item.
+
+# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4