61d87f57f8
Initial import of the Grove LCD I2C controller. Data sheet can be found at: http://www.seeedstudio.com/wiki/images/0/03/JHD1214Y_YG_1.0.pdf [DL: Updated command sequence according to datasheet.] Change-Id: Id1b491f8dce346769dc42c41fac0ea3aabe3950a Signed-off-by: Daniel Leung <daniel.leung@intel.com> Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
20 lines
639 B
Makefile
20 lines
639 B
Makefile
subdir-ccflags-y += -I$(srctree)/include/drivers
|
|
subdir-ccflags-y +=-I$(srctree)/arch/$(ARCH)/platforms/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
|
subdir-asflags-y +=-I$(srctree)/arch/$(ARCH)/platforms/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
|
|
|
obj-y = console/
|
|
obj-y += random/
|
|
obj-y += serial/
|
|
obj-y += timer/
|
|
obj-y += interrupt_controller/
|
|
obj-$(CONFIG_GROVE) += grove/
|
|
obj-$(CONFIG_PCI) += pci/
|
|
obj-$(CONFIG_BLUETOOTH) += bluetooth/
|
|
obj-$(CONFIG_UART_SIMPLE) += simple/
|
|
obj-$(CONFIG_SHARED_IRQ) += shared_irq/
|
|
obj-$(CONFIG_SPI) += spi/
|
|
obj-$(CONFIG_GPIO) += gpio/
|
|
obj-$(CONFIG_I2C) += i2c/
|
|
obj-$(CONFIG_PWM) += pwm/
|
|
obj-$(CONFIG_ADC) += adc/
|