blob: dc1f4803b6b7a20d3d488660f876684f5716c8dd [file] [log] [blame]
Adriana Kobylakd95d6af2019-03-19 10:40:36 -05001#!/bin/sh
2# This should be run before power-on and used to patch/update power specific
3# hardware settings. This is platform specific settings that must be
4# updated/removed if not Swift.
5
6########## Program TPS53915 FSW to desired frequency #########
7# FREQUENCY_CONFIG D3h, bits 2:0
8
9# AVDD, bus 3 addr 1D, set to 600khz
10# 600khz = 1,0,0
11i2cset -y 3 0x1D 0xD3 0x04 b
12
13# 3.3VA, bus 3 addr 1C, set to 600khz
14i2cset -y 3 0x1C 0xD3 0x04 b
15
16# 3.3VB, bus 3 addr 1B, set to 600khz
17i2cset -y 3 0x1B 0xD3 0x04 b
18
19# 5.0V, bus 3 addr 1A, set to 850khz
20# 850khz = 1,1,0
21i2cset -y 3 0x1A 0xD3 0x06 b
22########## END Program TPS53915 FSW to desired frequency #########
23