blob: 91412ec7cce316c52cd8354a64b959f20302dfa2 [file] [log] [blame]
/*
* This file is part of the coreboot project.
*
* Copyright 2013 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc.
*/
#include <device/i2c.h>
#include <stdint.h>
#include <stdlib.h>
#include "ps8625.h"
void parade_ps8625_bridge_setup(unsigned bus, unsigned chip_base,
const struct parade_write *parade_writes,
int parade_write_count)
{
int i;
for (i = 0; i < parade_write_count; i++) {
const struct parade_write *w = &parade_writes[i];
i2c_writeb(bus, chip_base + w->offset, w->reg, w->val);
}
}