Matt Spinler | 06b094f | 2019-06-07 13:27:37 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # For each AVSBus attached rail go back to using VOUT_COMMAND (PMBus voltage) |
| 3 | # instead of AVSBus and do *not* update VOUT_COMMAND with last voltage sent via |
| 4 | # AVSBus. This should be run after power-down. This is platform specific |
| 5 | # settings that must be updated/removed if not Swift. |
| 6 | |
| 7 | i2cset -y 9 0x70 0x00 0x00 b # VDD 0 - PAGE set |
| 8 | i2cset -y 9 0x70 0x01 0x80 b # VDD 0 |
| 9 | i2cset -y 9 0x71 0x00 0x01 b # VCS 0 - PAGE set |
| 10 | i2cset -y 9 0x71 0x01 0x80 b # VCS 0 |
| 11 | i2cset -y 9 0x71 0x00 0x00 b # VDN 0 - PAGE set |
| 12 | i2cset -y 9 0x71 0x01 0x80 b # VDN 0 |
| 13 | i2cset -y 10 0x70 0x00 0x00 b # VDD 1 - PAGE set |
| 14 | i2cset -y 10 0x70 0x01 0x80 b # VDD 1 |
| 15 | i2cset -y 10 0x71 0x00 0x01 b # VCS 1 - PAGE set |
| 16 | i2cset -y 10 0x71 0x01 0x80 b # VCS 1 |
| 17 | i2cset -y 10 0x71 0x00 0x00 b # VDN 1 - PAGE set |
| 18 | i2cset -y 10 0x71 0x01 0x80 b # VDN 1 |