| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- /* Copyright Statement:
- *
- * This software/firmware and related documentation ("MediaTek Software") are
- * protected under relevant copyright laws. The information contained herein
- * is confidential and proprietary to MediaTek Inc. and/or its licensors.
- * Without the prior written permission of MediaTek inc. and/or its licensors,
- * any reproduction, modification, use or disclosure of MediaTek Software,
- * and information contained herein, in whole or in part, shall be strictly prohibited.
- */
- /* MediaTek Inc. (C) 2010. All rights reserved.
- *
- * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
- * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
- * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER ON
- * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
- * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
- * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
- * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES TO LOOK ONLY TO SUCH
- * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. RECEIVER EXPRESSLY ACKNOWLEDGES
- * THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES
- * CONTAINED IN MEDIATEK SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK
- * SOFTWARE RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
- * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND
- * CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
- * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
- * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY RECEIVER TO
- * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
- *
- * The following software/firmware and/or related documentation ("MediaTek Software")
- * have been modified by MediaTek Inc. All revisions are subject to any receiver's
- * applicable license agreements with MediaTek Inc.
- */
- #include <platform/mt_typedefs.h>
- #include <platform/mt_i2c.h>
- #include <platform/mt8193.h>
- #define MT8193_CHIP_ADDR 0x3A
- #if 0
- static U32 _mt8193_i2c_read (U8 chip, U8 *cmdBuffer, int cmdBufferLen, U8 *dataBuffer, int dataBufferLen)
- {
- U32 ret_code = I2C_OK;
- ret_code = mt_i2c_write(I2C0, chip, cmdBuffer, cmdBufferLen, 0); // set register command
- if (ret_code != I2C_OK)
- return ret_code;
- ret_code = mt_i2c_read(I2C0, chip, dataBuffer, dataBufferLen, 0);
- dbg_print("[_mt8193_i2c_read] Done\n");
- return ret_code;
- }
- static U32 _mt8193_i2c_write (U8 chip, U8 *cmdBuffer, int cmdBufferLen, U8 *dataBuffer, int dataBufferLen)
- {
- U32 ret_code = I2C_OK;
- U8 write_data[I2C_FIFO_SIZE];
- int transfer_len = cmdBufferLen + dataBufferLen;
- int i=0, cmdIndex=0, dataIndex=0;
- if(I2C_FIFO_SIZE < (cmdBufferLen + dataBufferLen))
- { return -1;
- }
- //write_data[0] = cmd;
- //write_data[1] = writeData;
- while(cmdIndex < cmdBufferLen)
- {
- write_data[i] = cmdBuffer[cmdIndex];
- cmdIndex++;
- i++;
- }
- while(dataIndex < dataBufferLen)
- {
- write_data[i] = dataBuffer[dataIndex];
- dataIndex++;
- i++;
- }
- /* dump write_data for check */
- for( i=0 ; i < transfer_len ; i++ )
- {
- dbg_print("[mt8193_i2c_write] write_data[%d]=%x\n", i, write_data[i]);
- }
- ret_code = mt_i2c_write(I2C0, chip, write_data, transfer_len, 0);
- dbg_print("[mt8193_i2c_write] Done\n");
-
- return ret_code;
- }
- u8 mt8193_i2c_read8(u16 addr)
- {
- U8 chip_slave_address = MT8193_CHIP_ADDR;
- U8 cmd = addr;
- U32 result_tmp;
- int cmd_len = 1;
- U8 data = 0xFF;
- int data_len = 1;
- cmd = addr;
- result_tmp = _mt8193_i2c_read(MT8193_CHIP_ADDR, cmd, cmd_len, &data, data_len);
-
- return result_tmp;
- }
- int mt8193_i2c_write8(u16 addr, u8 value)
- {
- U8 chip_slave_address = MT8193_CHIP_ADDR;
- U8 cmd = addr;
- int cmd_len = 1;
- U8 data = value;
- int data_len = 1;
- U32 result_tmp;
- cmd = addr;
- result_tmp = _mt8193_i2c_write(chip_slave_address, &cmd, cmd_len, &data, data_len);
- //check
- result_tmp = _mt8193_i2c_read(chip_slave_address, &cmd, cmd_len, &data, data_len);
-
- printf("[mt8193_i2c_write] Reg[0x%x]=0x%x\n", addr, data);
- return 0;
- }
- u16 mt8193_i2c_read16(u16 addr)
- {
- U8 chip_slave_address = MT8193_CHIP_ADDR;
- U16 cmd = addr;
- U32 result_tmp;
- int cmd_len = 2;
- U16 data = 0xFFFF;
- int data_len = 2;
- cmd = addr;
- result_tmp = _mt8193_i2c_read(MT8193_CHIP_ADDR, cmd, cmd_len, &data, data_len);
-
- return result_tmp;
- }
- int mt8193_i2c_write16(u16 addr, u16 value)
- {
- U8 chip_slave_address = MT8193_CHIP_ADDR;
- U16 cmd = addr;
- int cmd_len = 2;
- U16 data = value;
- int data_len = 2;
- U32 result_tmp;
- cmd = addr;
- result_tmp = _mt8193_i2c_write(chip_slave_address, &cmd, cmd_len, &data, data_len);
- //check
- result_tmp = _mt8193_i2c_read(chip_slave_address, &cmd, cmd_len, &data, data_len);
-
- printf("[mt8193_i2c_write] Reg[0x%x]=0x%x\n", addr, data);
- return 0;
- }
- u32 mt8193_i2c_read32(u16 addr)
- {
- U8 chip_slave_address = MT8193_CHIP_ADDR;
- U16 cmd = addr;
- U32 result_tmp;
- int cmd_len = 2;
- U32 data = 0xFFFFFFFF;
- int data_len = 4;
- cmd = addr;
- result_tmp = _mt8193_i2c_read(MT8193_CHIP_ADDR, cmd, cmd_len, &data, data_len);
-
- return result_tmp;
- }
- int mt8193_i2c_write32(u16 addr, u32 value)
- {
- U8 chip_slave_address = MT8193_CHIP_ADDR;
- U16 cmd = addr;
- int cmd_len = 2;
- U32 data = value;
- int data_len = 4;
- U32 result_tmp;
- cmd = addr;
- result_tmp = _mt8193_i2c_write(chip_slave_address, &cmd, cmd_len, &data, data_len);
- //check
- result_tmp = _mt8193_i2c_read(chip_slave_address, &cmd, cmd_len, &data, data_len);
-
- printf("[mt8193_i2c_write] Reg[0x%x]=0x%x\n", addr, data);
- return 0;
- }
- #endif
- #define MT8193_I2C_ID I2C1
- u8 mt8193_i2c_read8(u16 addr)
- {
- u8 rxBuf[8] = {0};
- u8 lens;
- U32 ret_code = 0;
- u8 data;
- mt_i2c i2c = {0};
- i2c.id = MT8193_I2C_ID;
- i2c.addr = MT8193_CHIP_ADDR;
- i2c.mode = ST_MODE;
- i2c.speed = 100;
- i2c.dma_en = 0;
- if(((addr >> 8) & 0xFF) >= 0x80) // 8 bit : fast mode
- {
- rxBuf[0] = (addr >> 8) & 0xFF;
- lens = 1;
- }
- else // 16 bit : noraml mode
- {
- rxBuf[0] = ( addr >> 8 ) & 0xFF;
- rxBuf[1] = addr & 0xFF;
- lens = 2;
- }
- // ret_code = mt_i2c_write(MT8193_I2C_ID, MT8193_CHIP_ADDR, rxBuf, lens, 0); // set register command
- ret_code = i2c_write(&i2c, rxBuf, lens);
- if (ret_code != I2C_OK)
- return ret_code;
- lens = 1;
- // ret_code = mt_i2c_read(I2C2, MT8193_CHIP_ADDR, rxBuf, lens, 0);
- ret_code = i2c_read(&i2c, rxBuf, lens);
- if (ret_code != I2C_OK)
- {
- return ret_code;
- }
-
- data = rxBuf[0]; //LSB fisrt
-
- return data;
-
- }
- int mt8193_i2c_write8(u16 addr, u8 data)
- {
- u8 buffer[8];
- u8 lens;
- u32 ret_code = 0;
- u32 result_tmp = 0;
- mt_i2c i2c = {0};
- i2c.id = MT8193_I2C_ID;
- i2c.addr = MT8193_CHIP_ADDR;
- i2c.mode = ST_MODE;
- i2c.speed = 100;
- i2c.dma_en = 0;
- if(((addr >> 8) & 0xFF) >= 0x80) // 8 bit : fast mode
- {
- buffer[0] = (addr >> 8) & 0xFF;
- buffer[1] = data & 0xFF;
- lens = 2;
- }
- else // 16 bit : noraml mode
- {
- buffer[0] = (addr >> 8) & 0xFF;
- buffer[1] = addr & 0xFF;
- buffer[2] = data & 0xFF;
- lens = 3;
- }
- // ret_code = mt_i2c_write(I2C2, MT8193_CHIP_ADDR, buffer, lens, 0); // 0:I2C_PATH_NORMAL
- ret_code = i2c_write(&i2c, buffer, lens);
- if (ret_code != 0)
- {
- return ret_code;
- }
-
- //check
- result_tmp = mt8193_i2c_read8(addr);
-
- printf("[mt8193_i2c_write] Reg[0x%x]=0x%x, result_tmp=0x%x \n", addr, data, result_tmp);
- return 0;
- }
- u16 mt8193_i2c_read16(u16 addr)
- {
-
- u8 rxBuf[8] = {0};
- u8 lens;
- U32 ret_code = 0;
- u16 data;
- mt_i2c i2c = {0};
- i2c.id = MT8193_I2C_ID;
- i2c.addr = MT8193_CHIP_ADDR;
- i2c.mode = ST_MODE;
- i2c.speed = 100;
- i2c.dma_en = 0;
- if(((addr >> 8) & 0xFF) >= 0x80) // 8 bit : fast mode
- {
- rxBuf[0] = (addr >> 8) & 0xFF;
- lens = 1;
- }
- else // 16 bit : noraml mode
- {
- rxBuf[0] = ( addr >> 8 ) & 0xFF;
- rxBuf[1] = addr & 0xFF;
- lens = 2;
- }
- // ret_code = mt_i2c_write(I2C2, MT8193_CHIP_ADDR, rxBuf, lens, 0); // set register command
- ret_code = i2c_write(&i2c, rxBuf, lens);
- if (ret_code != I2C_OK)
- return ret_code;
- lens = 2;
- // ret_code = mt_i2c_read(I2C2, MT8193_CHIP_ADDR, rxBuf, lens, 0);
- ret_code = i2c_read(&i2c, rxBuf, lens);
- if (ret_code != I2C_OK)
- {
- return ret_code;
- }
-
- data = (rxBuf[1] << 8) | (rxBuf[0]); //LSB fisrt
-
- return data;
-
- }
- int mt8193_i2c_write16(u16 addr, u16 data)
- {
- u8 buffer[8];
- u8 lens;
- u32 ret_code = 0;
- u32 result_tmp = 0;
- mt_i2c i2c = {0};
- i2c.id = MT8193_I2C_ID;
- i2c.addr = MT8193_CHIP_ADDR;
- i2c.mode = ST_MODE;
- i2c.speed = 100;
- i2c.dma_en = 0;
- if(((addr >> 8) & 0xFF) >= 0x80) // 8 bit : fast mode
- {
- buffer[0] = (addr >> 8) & 0xFF;
- buffer[1] = (data >> 8) & 0xFF;
- buffer[2] = data & 0xFF;
- lens = 3;
- }
- else // 16 bit : noraml mode
- {
- buffer[0] = (addr >> 8) & 0xFF;
- buffer[1] = addr & 0xFF;
- buffer[2] = (data >> 8) & 0xFF;
- buffer[3] = data & 0xFF;
- lens = 4;
- }
- // ret_code = mt_i2c_write(I2C2, MT8193_CHIP_ADDR, buffer, lens, 0); // 0:I2C_PATH_NORMAL
- ret_code = i2c_write(&i2c, buffer, lens);
- if (ret_code != 0)
- {
- return ret_code;
- }
-
- //check
- result_tmp = mt8193_i2c_read16(addr);
-
- printf("[LK mt8193_i2c_write] Reg[0x%x]=0x%x, result_tmp=0x%x \n", addr, data, result_tmp);
- return 0;
- }
- u32 mt8193_i2c_read32(u16 addr)
- {
-
- u8 rxBuf[8] = {0};
- u8 lens;
- U32 ret_code = 0;
- u32 data;
- mt_i2c i2c = {0};
- i2c.id = MT8193_I2C_ID;
- i2c.addr = MT8193_CHIP_ADDR;
- i2c.mode = ST_MODE;
- i2c.speed = 100;
- i2c.dma_en = 0;
- if(((addr >> 8) & 0xFF) >= 0x80) // 8 bit : fast mode
- {
- rxBuf[0] = (addr >> 8) & 0xFF;
- lens = 1;
- }
- else // 16 bit : noraml mode
- {
- rxBuf[0] = ( addr >> 8 ) & 0xFF;
- rxBuf[1] = addr & 0xFF;
- lens = 2;
- }
- // ret_code = mt_i2c_write(I2C2, MT8193_CHIP_ADDR, rxBuf, lens, 0); // set register command
- ret_code = i2c_write(&i2c, rxBuf, lens);
- if (ret_code != I2C_OK)
- return ret_code;
- lens = 4;
- // ret_code = mt_i2c_read(I2C2, MT8193_CHIP_ADDR, rxBuf, lens, 0);
- ret_code = i2c_read(&i2c, rxBuf, lens);
- if (ret_code != I2C_OK)
- {
- return ret_code;
- }
-
- data = (rxBuf[3] << 24) | (rxBuf[2] << 16) | (rxBuf[1] << 8) | (rxBuf[0]); //LSB fisrt
- return data;
-
- }
- int mt8193_i2c_write32(u16 addr, u32 data)
- {
- u8 buffer[8];
- u8 lens;
- u32 ret_code = 0;
- u32 result_tmp = 0;
- mt_i2c i2c = {0};
- i2c.id = MT8193_I2C_ID;
- i2c.addr = MT8193_CHIP_ADDR;
- i2c.mode = ST_MODE;
- i2c.speed = 100;
- i2c.dma_en = 0;
- if(((addr >> 8) & 0xFF) >= 0x80) // 8 bit : fast mode
- {
- buffer[0] = (addr >> 8) & 0xFF;
- buffer[1] = (data >> 24) & 0xFF;
- buffer[2] = (data >> 16) & 0xFF;
- buffer[3] = (data >> 8) & 0xFF;
- buffer[4] = data & 0xFF;
- lens = 5;
- }
- else // 16 bit : noraml mode
- {
- buffer[0] = (addr >> 8) & 0xFF;
- buffer[1] = addr & 0xFF;
- buffer[2] = (data >> 24) & 0xFF;
- buffer[3] = (data >> 16) & 0xFF;
- buffer[4] = (data >> 8) & 0xFF;
- buffer[5] = data & 0xFF;
- lens = 6;
- }
- // ret_code = mt_i2c_write(I2C2, MT8193_CHIP_ADDR, buffer, lens, 0); // 0:I2C_PATH_NORMAL
- ret_code = i2c_write(&i2c, buffer, lens);
- if (ret_code != 0)
- {
- return ret_code;
- }
-
- //check
- result_tmp = mt8193_i2c_read32(addr);
-
- printf("[LK mt8193_i2c_write] Reg[0x%x]=0x%x, result_tmp=0x%x \n", addr, data, result_tmp);
- return 0;
- }
|