diff --git a/Documentation/Activate.md b/Documentation/Activate.md
new file mode 100644
index 0000000..8c9ed60
--- /dev/null
+++ b/Documentation/Activate.md
@@ -0,0 +1,49 @@
+
+# Activation
+
+As **ZenPower** is using the same **PCI** device
+as **[k10temp]**, you will need to disable it first.
+
+
+
+1. Check if the device is active:
+
+ ```sh
+ lsmod | grep k10temp
+ ```
+
+
+
+2. If active, unload it with:
+
+ ```sh
+ sudo modprobe -r k10temp
+ ```
+
+
+
+3. Blacklist the device:
+
+ ```sh
+ sudo bash -c 'sudo echo -e "\n# replaced with zenpower\nblacklist k10temp" >> /etc/modprobe.d/blacklist.conf'
+ ```
+
+ #### Optional
+
+ *If **[k10temp]** is not blacklisted, you may have*
+ *to manually unload it after every restart.*
+
+
+
+4. Activate **ZenPower** with:
+
+ ```sh
+ sudo modprobe zenpower
+ ```
+
+
+
+
+
+
+[k10temp]: https://github.com/groeck/k10temp
diff --git a/Documentation/Install.md b/Documentation/Install.md
new file mode 100644
index 0000000..cec29c6
--- /dev/null
+++ b/Documentation/Install.md
@@ -0,0 +1,31 @@
+
+# Installation
+
+*You can install this module via `dkms` .*
+
+
+
+## ![Badge Ubuntu]
+
+```
+sudo apt install \
+ linux-headers-$(uname -r) \
+ build-essential \
+ dkms \
+ git
+
+cd ~
+
+git clone https://github.com/ocerman/zenpower.git
+
+cd zenpower
+
+sudo make dkms-install
+```
+
+
+
+
+
+
+[Badge Ubuntu]: https://img.shields.io/badge/Ubuntu-E95420?style=for-the-badge&logoColor=white&logo=Ubuntu
diff --git a/Documentation/Update.md b/Documentation/Update.md
new file mode 100644
index 0000000..5f94d27
--- /dev/null
+++ b/Documentation/Update.md
@@ -0,0 +1,64 @@
+
+# Updating
+
+
+
+1. Unload **ZenPower**:
+
+
+
+ ```sh
+ sudo modprobe -r zenpower
+ ```
+
+
+
+2. Navigate to its folder:
+
+
+
+ ```sh
+ cd ~/zenpower
+ ```
+
+
+
+3. Uninstall the old version:
+
+
+
+ ```sh
+ sudo make dkms-uninstall
+ ```
+
+
+
+4. Update the code from git:
+
+
+
+ ```
+ git pull
+ ```
+
+
+
+5. Install the new version:
+
+
+
+ ```
+ sudo make dkms-install
+ ```
+
+
+
+6. Activate **Zenpower**:
+
+
+
+ ```
+ sudo modprobe zenpower
+ ```
+
+
diff --git a/README.md b/README.md
index f91bb66..7baa794 100644
--- a/README.md
+++ b/README.md
@@ -1,46 +1,106 @@
-# Zenpower
-Zenpower is Linux kernel driver for reading temperature, voltage(SVI2), current(SVI2) and power(SVI2) for AMD Zen family CPUs.
-Make sure that your Linux kernel have support for your CPUs as Zenpower is using kernel function `amd_smn_read` to read values from SMN. A fallback method (which may or may not work!) will be used when it is detected that kernel function `amd_smn_read` lacks support for your CPU.
-For AMD family 17h Model 70h (Ryzen 3000) CPUs you need kernel version 5.3.4 or newer or kernel with this patch: https://patchwork.kernel.org/patch/11043277/
+# ZenPower [![Badge License]][License]
-## Installation
-You can install this module via dkms.
+*Linux kernel Driver AMD Zen Family CPUs*
-### Installation commands for Ubuntu
-```
-sudo apt install dkms git build-essential linux-headers-$(uname -r)
-cd ~
-git clone https://github.com/ocerman/zenpower.git
-cd zenpower
-sudo make dkms-install
-```
+
+
+
-## Module activation
-Because zenpower is using same PCI device as k10temp, you have to disable k10temp first.
+